2018-10-24 10:49:10 +00:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
2013-04-08 16:41:30 +00:00
|
|
|
|
2019-06-19 20:46:59 +00:00
|
|
|
#import "shell/common/application_info.h"
|
2018-10-24 10:49:10 +00:00
|
|
|
|
2019-05-02 12:05:37 +00:00
|
|
|
#include <string>
|
|
|
|
|
2017-05-18 20:54:11 +00:00
|
|
|
#import "base/mac/foundation_util.h"
|
2013-04-18 03:27:53 +00:00
|
|
|
#import "base/strings/sys_string_conversions.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#import "shell/common/mac/main_application_bundle.h"
|
2013-04-08 16:41:30 +00:00
|
|
|
|
2018-10-24 10:49:10 +00:00
|
|
|
namespace electron {
|
2013-04-08 16:41:30 +00:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2013-05-28 19:42:52 +00:00
|
|
|
std::string ApplicationInfoDictionaryValue(NSString* key) {
|
2018-04-20 18:47:04 +00:00
|
|
|
return base::SysNSStringToUTF8(
|
|
|
|
[MainApplicationBundle().infoDictionary objectForKey:key]);
|
2013-05-28 19:42:52 +00:00
|
|
|
}
|
|
|
|
|
2013-04-08 16:41:30 +00:00
|
|
|
std::string ApplicationInfoDictionaryValue(CFStringRef key) {
|
2013-05-28 19:42:52 +00:00
|
|
|
return ApplicationInfoDictionaryValue(base::mac::CFToNSCast(key));
|
2013-04-08 16:41:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-31 18:18:20 +00:00
|
|
|
} // namespace
|
2013-04-08 16:41:30 +00:00
|
|
|
|
|
|
|
std::string GetApplicationName() {
|
|
|
|
return ApplicationInfoDictionaryValue(kCFBundleNameKey);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string GetApplicationVersion() {
|
2013-05-28 19:42:52 +00:00
|
|
|
return ApplicationInfoDictionaryValue(@"CFBundleShortVersionString");
|
2013-04-08 16:41:30 +00:00
|
|
|
}
|
|
|
|
|
2018-10-24 10:49:10 +00:00
|
|
|
} // namespace electron
|