2014-10-31 11:17:05 -07:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-04-25 17:49:37 +08:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2014-01-02 14:47:54 +00:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2014-03-16 08:30:26 +08:00
|
|
|
#include "atom/browser/browser.h"
|
2014-01-02 14:47:54 +00:00
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2014-03-16 08:30:26 +08:00
|
|
|
#include "atom/browser/native_window.h"
|
|
|
|
#include "atom/browser/window_list.h"
|
|
|
|
#include "atom/common/atom_version.h"
|
2015-04-14 15:55:41 +08:00
|
|
|
#include "brightray/common/application_info.h"
|
2016-06-26 01:55:24 +02:00
|
|
|
#include "chrome/browser/ui/libgtk2ui/unity_service.h"
|
2014-01-02 14:47:54 +00:00
|
|
|
|
|
|
|
namespace atom {
|
|
|
|
|
|
|
|
void Browser::Focus() {
|
|
|
|
// Focus on the first visible window.
|
|
|
|
WindowList* list = WindowList::GetInstance();
|
|
|
|
for (WindowList::iterator iter = list->begin(); iter != list->end(); ++iter) {
|
|
|
|
NativeWindow* window = *iter;
|
|
|
|
if (window->IsVisible()) {
|
|
|
|
window->Focus(true);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-17 13:05:06 +08:00
|
|
|
void Browser::AddRecentDocument(const base::FilePath& path) {
|
|
|
|
}
|
|
|
|
|
2014-11-17 16:13:47 +08:00
|
|
|
void Browser::ClearRecentDocuments() {
|
|
|
|
}
|
|
|
|
|
2015-11-03 15:09:31 +08:00
|
|
|
void Browser::SetAppUserModelID(const base::string16& name) {
|
|
|
|
}
|
|
|
|
|
2016-08-16 15:54:30 +10:00
|
|
|
bool Browser::RemoveAsDefaultProtocolClient(const std::string& protocol,
|
|
|
|
mate::Arguments* args) {
|
2016-03-24 10:55:09 -07:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-08-16 15:54:30 +10:00
|
|
|
bool Browser::SetAsDefaultProtocolClient(const std::string& protocol,
|
2016-08-22 09:50:58 +09:00
|
|
|
mate::Arguments* args) {
|
2016-03-21 11:24:25 -07:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-08-16 15:54:30 +10:00
|
|
|
bool Browser::IsDefaultProtocolClient(const std::string& protocol,
|
|
|
|
mate::Arguments* args) {
|
2016-04-24 22:17:01 -07:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-07-01 22:18:39 +09:00
|
|
|
bool Browser::SetBadgeCount(int count) {
|
|
|
|
if (IsUnityRunning()) {
|
|
|
|
unity::SetDownloadCount(count);
|
2016-07-02 10:36:11 +09:00
|
|
|
badge_count_ = count;
|
2016-07-01 22:18:39 +09:00
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
2016-07-01 17:39:01 +09:00
|
|
|
}
|
|
|
|
|
2016-07-11 10:57:53 -07:00
|
|
|
void Browser::SetLoginItemSettings(LoginItemSettings settings) {
|
|
|
|
}
|
|
|
|
|
2016-07-11 12:36:46 -07:00
|
|
|
Browser::LoginItemSettings Browser::GetLoginItemSettings() {
|
2016-07-11 10:57:53 -07:00
|
|
|
return LoginItemSettings();
|
|
|
|
}
|
|
|
|
|
2014-01-02 14:47:54 +00:00
|
|
|
std::string Browser::GetExecutableFileVersion() const {
|
2015-04-14 15:55:41 +08:00
|
|
|
return brightray::GetApplicationVersion();
|
2014-01-02 14:47:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string Browser::GetExecutableFileProductName() const {
|
2015-04-14 15:55:41 +08:00
|
|
|
return brightray::GetApplicationName();
|
2014-01-02 14:47:54 +00:00
|
|
|
}
|
|
|
|
|
2016-07-01 17:39:01 +09:00
|
|
|
bool Browser::IsUnityRunning() {
|
2016-06-26 01:55:24 +02:00
|
|
|
return unity::IsRunning();
|
|
|
|
}
|
|
|
|
|
2014-01-02 14:47:54 +00:00
|
|
|
} // namespace atom
|