2013-05-02 19:43:23 +04:00
|
|
|
// Copyright (c) 2013 GitHub, Inc. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#include "browser/browser.h"
|
|
|
|
|
2013-06-19 09:41:54 +04:00
|
|
|
#import "base/mac/bundle_locations.h"
|
|
|
|
#include "base/strings/sys_string_conversions.h"
|
2013-05-02 19:43:23 +04:00
|
|
|
#import "browser/atom_application_mac.h"
|
|
|
|
|
|
|
|
namespace atom {
|
|
|
|
|
|
|
|
void Browser::Terminate() {
|
|
|
|
[[AtomApplication sharedApplication] terminate:nil];
|
|
|
|
}
|
|
|
|
|
2013-05-30 15:24:47 +04:00
|
|
|
void Browser::Focus() {
|
|
|
|
[[NSApplication sharedApplication] activateIgnoringOtherApps:YES];
|
|
|
|
}
|
|
|
|
|
2013-06-19 09:41:54 +04:00
|
|
|
std::string Browser::GetVersion() {
|
|
|
|
NSDictionary* infoDictionary = base::mac::OuterBundle().infoDictionary;
|
|
|
|
NSString *version = [infoDictionary objectForKey:@"CFBundleVersion"];
|
|
|
|
return base::SysNSStringToUTF8(version);
|
|
|
|
}
|
|
|
|
|
2013-05-02 19:43:23 +04:00
|
|
|
} // namespace atom
|