electron/atom/browser/browser_linux.cc

58 lines
1.3 KiB
C++
Raw Normal View History

// Copyright (c) 2013 GitHub, Inc.
2014-04-25 09:49:37 +00: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 00:30:26 +00:00
#include "atom/browser/browser.h"
2014-01-02 14:47:54 +00:00
#include <stdlib.h>
2014-03-16 00:30:26 +00:00
#include "atom/browser/native_window.h"
#include "atom/browser/window_list.h"
#include "atom/common/atom_version.h"
#include "brightray/common/application_info.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 05:05:06 +00:00
void Browser::AddRecentDocument(const base::FilePath& path) {
}
2014-11-17 08:13:47 +00:00
void Browser::ClearRecentDocuments() {
}
void Browser::SetAppUserModelID(const base::string16& name) {
}
bool Browser::RemoveAsDefaultProtocolClient(const std::string& protocol) {
return false;
}
bool Browser::SetAsDefaultProtocolClient(const std::string& protocol) {
return false;
}
2016-04-25 05:17:01 +00:00
bool Browser::IsDefaultProtocolClient(const std::string& protocol) {
return false;
}
2014-01-02 14:47:54 +00:00
std::string Browser::GetExecutableFileVersion() const {
return brightray::GetApplicationVersion();
2014-01-02 14:47:54 +00:00
}
std::string Browser::GetExecutableFileProductName() const {
return brightray::GetApplicationName();
2014-01-02 14:47:54 +00:00
}
} // namespace atom