2013-03-14 17:05:01 +00:00
|
|
|
#ifndef BRIGHTRAY_COMMON_MAC_MAIN_APPLICATION_BUNDLE_H_
|
|
|
|
#define BRIGHTRAY_COMMON_MAC_MAIN_APPLICATION_BUNDLE_H_
|
|
|
|
|
|
|
|
@class NSBundle;
|
|
|
|
|
|
|
|
namespace base {
|
|
|
|
class FilePath;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace brightray {
|
|
|
|
|
2013-11-17 23:57:25 +00:00
|
|
|
// The "main" application bundle is the outermost bundle for this logical
|
|
|
|
// application. E.g., if you have MyApp.app and
|
|
|
|
// MyApp.app/Contents/Frameworks/MyApp Helper.app, the main application bundle
|
|
|
|
// is MyApp.app, no matter which executable is currently running.
|
2013-03-14 17:05:01 +00:00
|
|
|
NSBundle* MainApplicationBundle();
|
|
|
|
base::FilePath MainApplicationBundlePath();
|
|
|
|
|
2013-11-17 23:57:25 +00:00
|
|
|
} // namespace brightray
|
2013-03-14 17:05:01 +00:00
|
|
|
|
2017-05-18 22:05:25 +00:00
|
|
|
#endif // BRIGHTRAY_COMMON_MAC_MAIN_APPLICATION_BUNDLE_H_
|