electron/atom/app/atom_library_main.cc

16 lines
481 B
C++
Raw Normal View History

2013-04-12 01:46:58 +00:00
// Copyright (c) 2013 GitHub, Inc. All rights reserved.
2014-04-25 09:49:37 +00:00
// Use of this source code is governed by the MIT license that can be
2013-04-12 01:46:58 +00:00
// found in the LICENSE file.
2014-03-16 00:30:26 +00:00
#include "atom/app/atom_library_main.h"
2013-04-12 01:46:58 +00:00
2014-03-16 00:30:26 +00:00
#include "atom/app/atom_main_delegate.h"
2013-04-12 01:46:58 +00:00
#include "content/public/app/content_main.h"
2013-07-01 14:21:31 +00:00
#if defined(OS_MACOSX)
2013-04-12 01:46:58 +00:00
int AtomMain(int argc, const char* argv[]) {
atom::AtomMainDelegate delegate;
return content::ContentMain(content::ContentMainParams(&delegate));
2013-04-12 01:46:58 +00:00
}
2013-07-01 14:21:31 +00:00
#endif // OS_MACOSX