e70ce89235
* chore: iwyu shell/browser/electron_pdf_document_helper_client.h * chore: iwyu shell/browser/hid/electron_hid_delegate.h * chore: iwyu content/public/browser/web_contents.h * chore: iwyu shell/browser/usb/electron_usb_delegate.h * chore: iwyu shell/browser/browser_observer.h * chore: iwyu shell/browser/bluetooth/electron_bluetooth_delegate.h * chore: iwyu shell/browser/serial/electron_serial_delegate.h * chore: iwyu shell/browser/api/frame_subscriber.h * chore: iwyu mojo/public/cpp/bindings/ * chore: iwyu components/ * chore: iwyu extensions/ * chore: iwyu shell/common/gin_helper/ * chore: iwyu v8/ * chore: iwyu base/containers/linked_list.h * chore: iwyu shell/browser/native_window.h * chore: iwyu shell/browser/api/electron_api_base_window.h * chore: iwyu shell/common/node_includes.h * chore: iwyu gin/handle.h * chore: iwyu base/functional/callback.h * chore: iwyu ui/gfx/ * chore: iwyu content/public/browser/render_frame_host.h * fix: mac * fix: mac * fix: win * chore: iwyu base/files/file_path.h * chore: iwyu base/unguessable_token.h * chore: iwyu ui/display/screen.h * chore: iwyu chrome/browser/predictors/preconnect_manager.h * chore: iwyu base/observer_list_types.h * chore: iwyu content/public/browser/web_contents.h * chore: iwyu chrome/browser/devtools/devtools_eye_dropper.h * chore: iwyu shell/browser/ui/inspectable_web_contents.h * chore: iwyu content/public/browser/keyboard_event_processing_result.h * chore: iwyu net/cookies/canonical_cookie.h * chore: iwyu net/base/address_list.h * chore: iwyu net/cert/x509_certificate.h * chore: iwyu net/cookies/cookie_change_dispatcher.h * chore: iwyu net/dns/public/host_resolver_results.h * fix: mac * Revert "chore: iwyu net/cert/x509_certificate.h" This reverts commit 002896f71146e90f1e29e090a1d6eede48cee11e.
302 lines
7.7 KiB
C++
302 lines
7.7 KiB
C++
// Copyright (c) 2013 GitHub, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "shell/browser/browser.h"
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
#include <utility>
|
|
|
|
#include "base/files/file_util.h"
|
|
#include "base/path_service.h"
|
|
#include "base/run_loop.h"
|
|
#include "base/task/single_thread_task_runner.h"
|
|
#include "base/threading/thread_restrictions.h"
|
|
#include "chrome/common/chrome_paths.h"
|
|
#include "shell/browser/browser_observer.h"
|
|
#include "shell/browser/electron_browser_main_parts.h"
|
|
#include "shell/browser/native_window.h"
|
|
#include "shell/browser/window_list.h"
|
|
#include "shell/common/application_info.h"
|
|
#include "shell/common/gin_converters/login_item_settings_converter.h"
|
|
#include "shell/common/gin_helper/arguments.h"
|
|
#include "shell/common/thread_restrictions.h"
|
|
|
|
namespace electron {
|
|
|
|
LoginItemSettings::LoginItemSettings() = default;
|
|
LoginItemSettings::~LoginItemSettings() = default;
|
|
LoginItemSettings::LoginItemSettings(const LoginItemSettings& other) = default;
|
|
|
|
#if BUILDFLAG(IS_WIN)
|
|
LaunchItem::LaunchItem() = default;
|
|
LaunchItem::~LaunchItem() = default;
|
|
LaunchItem::LaunchItem(const LaunchItem& other) = default;
|
|
#endif
|
|
|
|
namespace {
|
|
|
|
// Call |quit| after Chromium is fully started.
|
|
//
|
|
// This is important for quitting immediately in the "ready" event, when
|
|
// certain initialization task may still be pending, and quitting at that time
|
|
// could end up with crash on exit.
|
|
void RunQuitClosure(base::OnceClosure quit) {
|
|
// On Linux/Windows the "ready" event is emitted in "PreMainMessageLoopRun",
|
|
// make sure we quit after message loop has run for once.
|
|
base::SingleThreadTaskRunner::GetCurrentDefault()->PostTask(FROM_HERE,
|
|
std::move(quit));
|
|
}
|
|
|
|
} // namespace
|
|
|
|
Browser::Browser() {
|
|
WindowList::AddObserver(this);
|
|
}
|
|
|
|
Browser::~Browser() {
|
|
WindowList::RemoveObserver(this);
|
|
}
|
|
|
|
void Browser::AddObserver(BrowserObserver* obs) {
|
|
observers_.AddObserver(obs);
|
|
}
|
|
|
|
void Browser::RemoveObserver(BrowserObserver* obs) {
|
|
observers_.RemoveObserver(obs);
|
|
}
|
|
|
|
// static
|
|
Browser* Browser::Get() {
|
|
return ElectronBrowserMainParts::Get()->browser();
|
|
}
|
|
|
|
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX)
|
|
void Browser::Focus(gin::Arguments* args) {
|
|
// Focus on the first visible window.
|
|
for (auto* const window : WindowList::GetWindows()) {
|
|
if (window->IsVisible()) {
|
|
window->Focus(true);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
#endif
|
|
|
|
void Browser::Quit() {
|
|
if (is_quitting_)
|
|
return;
|
|
|
|
is_quitting_ = HandleBeforeQuit();
|
|
if (!is_quitting_)
|
|
return;
|
|
|
|
if (electron::WindowList::IsEmpty())
|
|
NotifyAndShutdown();
|
|
else
|
|
electron::WindowList::CloseAllWindows();
|
|
}
|
|
|
|
void Browser::Exit(gin::Arguments* args) {
|
|
int code = 0;
|
|
args->GetNext(&code);
|
|
|
|
if (!ElectronBrowserMainParts::Get()->SetExitCode(code)) {
|
|
// Message loop is not ready, quit directly.
|
|
exit(code);
|
|
} else {
|
|
// Prepare to quit when all windows have been closed.
|
|
is_quitting_ = true;
|
|
|
|
// Remember this caller so that we don't emit unrelated events.
|
|
is_exiting_ = true;
|
|
|
|
// Must destroy windows before quitting, otherwise bad things can happen.
|
|
if (electron::WindowList::IsEmpty()) {
|
|
Shutdown();
|
|
} else {
|
|
// Unlike Quit(), we do not ask to close window, but destroy the window
|
|
// without asking.
|
|
electron::WindowList::DestroyAllWindows();
|
|
}
|
|
}
|
|
}
|
|
|
|
void Browser::Shutdown() {
|
|
if (is_shutdown_)
|
|
return;
|
|
|
|
is_shutdown_ = true;
|
|
is_quitting_ = true;
|
|
|
|
for (BrowserObserver& observer : observers_)
|
|
observer.OnQuit();
|
|
|
|
if (quit_main_message_loop_) {
|
|
RunQuitClosure(std::move(quit_main_message_loop_));
|
|
} else {
|
|
// There is no message loop available so we are in early stage, wait until
|
|
// the quit_main_message_loop_ is available.
|
|
// Exiting now would leave defunct processes behind.
|
|
}
|
|
}
|
|
|
|
std::string Browser::GetVersion() const {
|
|
std::string ret = OverriddenApplicationVersion();
|
|
if (ret.empty())
|
|
ret = GetExecutableFileVersion();
|
|
return ret;
|
|
}
|
|
|
|
void Browser::SetVersion(const std::string& version) {
|
|
OverriddenApplicationVersion() = version;
|
|
}
|
|
|
|
std::string Browser::GetName() const {
|
|
std::string ret = OverriddenApplicationName();
|
|
if (ret.empty())
|
|
ret = GetExecutableFileProductName();
|
|
return ret;
|
|
}
|
|
|
|
void Browser::SetName(const std::string& name) {
|
|
OverriddenApplicationName() = name;
|
|
}
|
|
|
|
bool Browser::OpenFile(const std::string& file_path) {
|
|
bool prevent_default = false;
|
|
for (BrowserObserver& observer : observers_)
|
|
observer.OnOpenFile(&prevent_default, file_path);
|
|
|
|
return prevent_default;
|
|
}
|
|
|
|
void Browser::OpenURL(const std::string& url) {
|
|
for (BrowserObserver& observer : observers_)
|
|
observer.OnOpenURL(url);
|
|
}
|
|
|
|
void Browser::Activate(bool has_visible_windows) {
|
|
for (BrowserObserver& observer : observers_)
|
|
observer.OnActivate(has_visible_windows);
|
|
}
|
|
|
|
void Browser::WillFinishLaunching() {
|
|
for (BrowserObserver& observer : observers_)
|
|
observer.OnWillFinishLaunching();
|
|
}
|
|
|
|
void Browser::DidFinishLaunching(base::Value::Dict launch_info) {
|
|
// Make sure the userData directory is created.
|
|
ScopedAllowBlockingForElectron allow_blocking;
|
|
base::FilePath user_data;
|
|
if (base::PathService::Get(chrome::DIR_USER_DATA, &user_data)) {
|
|
base::CreateDirectoryAndGetError(user_data, nullptr);
|
|
#if BUILDFLAG(IS_WIN)
|
|
base::SetExtraNoExecuteAllowedPath(chrome::DIR_USER_DATA);
|
|
#endif
|
|
}
|
|
|
|
is_ready_ = true;
|
|
if (ready_promise_) {
|
|
ready_promise_->Resolve();
|
|
}
|
|
for (BrowserObserver& observer : observers_)
|
|
observer.OnFinishLaunching(launch_info.Clone());
|
|
}
|
|
|
|
v8::Local<v8::Value> Browser::WhenReady(v8::Isolate* isolate) {
|
|
if (!ready_promise_) {
|
|
ready_promise_ = std::make_unique<gin_helper::Promise<void>>(isolate);
|
|
if (is_ready()) {
|
|
ready_promise_->Resolve();
|
|
}
|
|
}
|
|
return ready_promise_->GetHandle();
|
|
}
|
|
|
|
void Browser::OnAccessibilitySupportChanged() {
|
|
for (BrowserObserver& observer : observers_)
|
|
observer.OnAccessibilitySupportChanged();
|
|
}
|
|
|
|
void Browser::PreMainMessageLoopRun() {
|
|
for (BrowserObserver& observer : observers_) {
|
|
observer.OnPreMainMessageLoopRun();
|
|
}
|
|
}
|
|
|
|
void Browser::PreCreateThreads() {
|
|
for (BrowserObserver& observer : observers_) {
|
|
observer.OnPreCreateThreads();
|
|
}
|
|
}
|
|
|
|
void Browser::SetMainMessageLoopQuitClosure(base::OnceClosure quit_closure) {
|
|
if (is_shutdown_)
|
|
RunQuitClosure(std::move(quit_closure));
|
|
else
|
|
quit_main_message_loop_ = std::move(quit_closure);
|
|
}
|
|
|
|
void Browser::NotifyAndShutdown() {
|
|
if (is_shutdown_)
|
|
return;
|
|
|
|
bool prevent_default = false;
|
|
for (BrowserObserver& observer : observers_)
|
|
observer.OnWillQuit(&prevent_default);
|
|
|
|
if (prevent_default) {
|
|
is_quitting_ = false;
|
|
return;
|
|
}
|
|
|
|
Shutdown();
|
|
}
|
|
|
|
bool Browser::HandleBeforeQuit() {
|
|
bool prevent_default = false;
|
|
for (BrowserObserver& observer : observers_)
|
|
observer.OnBeforeQuit(&prevent_default);
|
|
|
|
return !prevent_default;
|
|
}
|
|
|
|
void Browser::OnWindowCloseCancelled(NativeWindow* window) {
|
|
if (is_quitting_)
|
|
// Once a beforeunload handler has prevented the closing, we think the quit
|
|
// is cancelled too.
|
|
is_quitting_ = false;
|
|
}
|
|
|
|
void Browser::OnWindowAllClosed() {
|
|
if (is_exiting_) {
|
|
Shutdown();
|
|
} else if (is_quitting_) {
|
|
NotifyAndShutdown();
|
|
} else {
|
|
for (BrowserObserver& observer : observers_)
|
|
observer.OnWindowAllClosed();
|
|
}
|
|
}
|
|
|
|
#if BUILDFLAG(IS_MAC)
|
|
void Browser::NewWindowForTab() {
|
|
for (BrowserObserver& observer : observers_)
|
|
observer.OnNewWindowForTab();
|
|
}
|
|
|
|
void Browser::DidBecomeActive() {
|
|
for (BrowserObserver& observer : observers_)
|
|
observer.OnDidBecomeActive();
|
|
}
|
|
|
|
void Browser::DidResignActive() {
|
|
for (BrowserObserver& observer : observers_)
|
|
observer.OnDidResignActive();
|
|
}
|
|
#endif
|
|
|
|
} // namespace electron
|