2014-10-31 18:17:05 +00:00
|
|
|
// 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
|
2013-04-12 01:46:58 +00:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2014-03-16 00:30:26 +00:00
|
|
|
#include "atom/browser/atom_browser_main_parts.h"
|
2013-04-12 01:46:58 +00:00
|
|
|
|
2018-09-13 00:25:56 +00:00
|
|
|
#include <utility>
|
|
|
|
|
2018-10-23 20:15:55 +00:00
|
|
|
#if defined(OS_LINUX)
|
|
|
|
#include <glib.h> // for g_setenv()
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "atom/app/atom_main_delegate.h"
|
2017-09-14 13:08:18 +00:00
|
|
|
#include "atom/browser/api/atom_api_app.h"
|
2015-06-24 06:36:05 +00:00
|
|
|
#include "atom/browser/api/trackable_object.h"
|
2014-03-16 00:30:26 +00:00
|
|
|
#include "atom/browser/atom_browser_client.h"
|
|
|
|
#include "atom/browser/atom_browser_context.h"
|
2018-10-24 10:49:10 +00:00
|
|
|
#include "atom/browser/atom_paths.h"
|
2018-10-19 13:50:30 +00:00
|
|
|
#include "atom/browser/atom_web_ui_controller_factory.h"
|
2014-03-16 00:30:26 +00:00
|
|
|
#include "atom/browser/browser.h"
|
2018-11-05 14:29:33 +00:00
|
|
|
#include "atom/browser/browser_process_impl.h"
|
2014-07-28 08:00:15 +00:00
|
|
|
#include "atom/browser/javascript_environment.h"
|
2018-10-19 18:51:43 +00:00
|
|
|
#include "atom/browser/media/media_capture_devices_dispatcher.h"
|
2017-05-15 16:30:55 +00:00
|
|
|
#include "atom/browser/node_debugger.h"
|
2018-10-19 13:50:30 +00:00
|
|
|
#include "atom/browser/ui/devtools_manager_delegate.h"
|
2014-04-25 08:13:16 +00:00
|
|
|
#include "atom/common/api/atom_bindings.h"
|
2018-10-24 10:49:10 +00:00
|
|
|
#include "atom/common/application_info.h"
|
2017-03-10 08:33:27 +00:00
|
|
|
#include "atom/common/asar/asar_util.h"
|
2014-03-16 00:30:26 +00:00
|
|
|
#include "atom/common/node_bindings.h"
|
2018-10-23 20:15:55 +00:00
|
|
|
#include "base/base_switches.h"
|
2014-07-03 17:30:36 +00:00
|
|
|
#include "base/command_line.h"
|
2018-10-23 20:15:55 +00:00
|
|
|
#include "base/feature_list.h"
|
|
|
|
#include "base/message_loop/message_loop.h"
|
|
|
|
#include "base/path_service.h"
|
|
|
|
#include "base/strings/string_number_conversions.h"
|
|
|
|
#include "base/strings/utf_string_conversions.h"
|
2018-10-05 19:12:53 +00:00
|
|
|
#include "chrome/browser/icon_manager.h"
|
2018-10-23 20:15:55 +00:00
|
|
|
#include "content/public/browser/browser_thread.h"
|
2016-08-03 23:00:25 +00:00
|
|
|
#include "content/public/browser/child_process_security_policy.h"
|
2018-10-19 13:50:30 +00:00
|
|
|
#include "content/public/browser/web_ui_controller_factory.h"
|
2018-10-23 20:15:55 +00:00
|
|
|
#include "content/public/common/content_features.h"
|
2018-10-19 13:50:30 +00:00
|
|
|
#include "content/public/common/content_switches.h"
|
2018-04-05 21:09:37 +00:00
|
|
|
#include "content/public/common/result_codes.h"
|
2018-04-12 09:53:49 +00:00
|
|
|
#include "content/public/common/service_manager_connection.h"
|
2018-10-01 20:00:53 +00:00
|
|
|
#include "electron/buildflags/buildflags.h"
|
2018-10-23 20:15:55 +00:00
|
|
|
#include "media/base/localized_strings.h"
|
2018-04-12 09:53:49 +00:00
|
|
|
#include "services/device/public/mojom/constants.mojom.h"
|
|
|
|
#include "services/service_manager/public/cpp/connector.h"
|
2018-03-14 05:42:08 +00:00
|
|
|
#include "ui/base/idle/idle.h"
|
2017-12-16 09:21:29 +00:00
|
|
|
#include "ui/base/l10n/l10n_util.h"
|
2018-10-23 20:15:55 +00:00
|
|
|
#include "ui/base/material_design/material_design_controller.h"
|
|
|
|
#include "ui/base/resource/resource_bundle.h"
|
|
|
|
#include "ui/base/ui_base_switches.h"
|
|
|
|
|
|
|
|
#if defined(USE_AURA)
|
|
|
|
#include "ui/display/display.h"
|
|
|
|
#include "ui/display/screen.h"
|
|
|
|
#include "ui/views/widget/desktop_aura/desktop_screen.h"
|
|
|
|
#include "ui/wm/core/wm_state.h"
|
|
|
|
#endif
|
2013-12-11 07:48:19 +00:00
|
|
|
|
2014-07-03 17:30:36 +00:00
|
|
|
#if defined(USE_X11)
|
2018-10-23 20:15:55 +00:00
|
|
|
#include "base/environment.h"
|
|
|
|
#include "base/nix/xdg_util.h"
|
|
|
|
#include "base/threading/thread_task_runner_handle.h"
|
|
|
|
#include "chrome/browser/ui/libgtkui/gtk_ui.h"
|
2017-01-26 10:55:19 +00:00
|
|
|
#include "chrome/browser/ui/libgtkui/gtk_util.h"
|
2018-10-23 20:15:55 +00:00
|
|
|
#include "ui/base/x/x11_util.h"
|
|
|
|
#include "ui/base/x/x11_util_internal.h"
|
2016-01-11 11:23:53 +00:00
|
|
|
#include "ui/events/devices/x11/touch_factory_x11.h"
|
2018-10-23 20:15:55 +00:00
|
|
|
#include "ui/views/linux_ui/linux_ui.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(OS_WIN)
|
|
|
|
#include "ui/base/cursor/cursor_loader_win.h"
|
|
|
|
#include "ui/base/l10n/l10n_util_win.h"
|
|
|
|
#include "ui/gfx/platform_font_win.h"
|
2014-07-03 17:30:36 +00:00
|
|
|
#endif
|
|
|
|
|
2018-04-19 06:26:34 +00:00
|
|
|
#if defined(OS_MACOSX)
|
|
|
|
#include "atom/browser/ui/cocoa/views_delegate_mac.h"
|
2018-04-19 06:38:33 +00:00
|
|
|
#else
|
2018-10-19 13:50:30 +00:00
|
|
|
#include "atom/browser/ui/views/atom_views_delegate.h"
|
2018-04-19 06:26:34 +00:00
|
|
|
#endif
|
|
|
|
|
2018-10-23 20:15:55 +00:00
|
|
|
#if defined(OS_LINUX)
|
|
|
|
#include "device/bluetooth/bluetooth_adapter_factory.h"
|
|
|
|
#include "device/bluetooth/dbus/dbus_bluez_manager_wrapper_linux.h"
|
|
|
|
#endif
|
|
|
|
|
2018-04-19 06:26:34 +00:00
|
|
|
// Must be included after all other headers.
|
|
|
|
#include "atom/common/node_includes.h"
|
|
|
|
|
2013-04-12 01:46:58 +00:00
|
|
|
namespace atom {
|
|
|
|
|
2016-11-30 07:30:03 +00:00
|
|
|
namespace {
|
|
|
|
|
2018-04-18 01:55:30 +00:00
|
|
|
template <typename T>
|
2015-12-03 09:04:40 +00:00
|
|
|
void Erase(T* container, typename T::iterator iter) {
|
|
|
|
container->erase(iter);
|
|
|
|
}
|
|
|
|
|
2018-10-23 20:15:55 +00:00
|
|
|
#if defined(OS_WIN)
|
|
|
|
// gfx::Font callbacks
|
|
|
|
void AdjustUIFont(LOGFONT* logfont) {
|
|
|
|
l10n_util::AdjustUIFont(logfont);
|
|
|
|
}
|
|
|
|
|
|
|
|
int GetMinimumFontSize() {
|
|
|
|
return 10;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
base::string16 MediaStringProvider(media::MessageId id) {
|
|
|
|
switch (id) {
|
|
|
|
case media::DEFAULT_AUDIO_DEVICE_NAME:
|
|
|
|
return base::ASCIIToUTF16("Default");
|
|
|
|
#if defined(OS_WIN)
|
|
|
|
case media::COMMUNICATIONS_AUDIO_DEVICE_NAME:
|
|
|
|
return base::ASCIIToUTF16("Communications");
|
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
return base::string16();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(USE_X11)
|
|
|
|
// Indicates that we're currently responding to an IO error (by shutting down).
|
|
|
|
bool g_in_x11_io_error_handler = false;
|
|
|
|
|
|
|
|
// Number of seconds to wait for UI thread to get an IO error if we get it on
|
|
|
|
// the background thread.
|
|
|
|
const int kWaitForUIThreadSeconds = 10;
|
|
|
|
|
|
|
|
void OverrideLinuxAppDataPath() {
|
|
|
|
base::FilePath path;
|
2018-10-24 10:49:10 +00:00
|
|
|
if (base::PathService::Get(DIR_APP_DATA, &path))
|
2018-10-23 20:15:55 +00:00
|
|
|
return;
|
|
|
|
std::unique_ptr<base::Environment> env(base::Environment::Create());
|
|
|
|
path = base::nix::GetXDGDirectory(env.get(), base::nix::kXdgConfigHomeEnvVar,
|
|
|
|
base::nix::kDotConfigDir);
|
2018-10-24 10:49:10 +00:00
|
|
|
base::PathService::Override(DIR_APP_DATA, path);
|
2018-10-23 20:15:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int BrowserX11ErrorHandler(Display* d, XErrorEvent* error) {
|
|
|
|
if (!g_in_x11_io_error_handler && base::ThreadTaskRunnerHandle::IsSet()) {
|
|
|
|
base::ThreadTaskRunnerHandle::Get()->PostTask(
|
|
|
|
FROM_HERE, base::Bind(&ui::LogErrorEventDescription, d, *error));
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// This function is used to help us diagnose crash dumps that happen
|
|
|
|
// during the shutdown process.
|
|
|
|
NOINLINE void WaitingForUIThreadToHandleIOError() {
|
|
|
|
// Ensure function isn't optimized away.
|
|
|
|
asm("");
|
|
|
|
sleep(kWaitForUIThreadSeconds);
|
|
|
|
}
|
|
|
|
|
|
|
|
int BrowserX11IOErrorHandler(Display* d) {
|
|
|
|
if (!content::BrowserThread::CurrentlyOn(content::BrowserThread::UI)) {
|
|
|
|
// Wait for the UI thread (which has a different connection to the X server)
|
|
|
|
// to get the error. We can't call shutdown from this thread without
|
|
|
|
// tripping an error. Doing it through a function so that we'll be able
|
|
|
|
// to see it in any crash dumps.
|
|
|
|
WaitingForUIThreadToHandleIOError();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If there's an IO error it likely means the X server has gone away.
|
|
|
|
// If this DCHECK fails, then that means SessionEnding() below triggered some
|
|
|
|
// code that tried to talk to the X server, resulting in yet another error.
|
|
|
|
DCHECK(!g_in_x11_io_error_handler);
|
|
|
|
|
|
|
|
g_in_x11_io_error_handler = true;
|
|
|
|
LOG(ERROR) << "X IO error received (X server probably went away)";
|
|
|
|
base::ThreadTaskRunnerHandle::Get()->PostTask(
|
|
|
|
FROM_HERE, base::RunLoop::QuitCurrentWhenIdleClosureDeprecated());
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int X11EmptyErrorHandler(Display* d, XErrorEvent* error) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int X11EmptyIOErrorHandler(Display* d) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-11-30 07:30:03 +00:00
|
|
|
} // namespace
|
|
|
|
|
2018-10-23 20:15:55 +00:00
|
|
|
void AtomBrowserMainParts::InitializeFeatureList() {
|
|
|
|
auto* cmd_line = base::CommandLine::ForCurrentProcess();
|
|
|
|
auto enable_features =
|
|
|
|
cmd_line->GetSwitchValueASCII(::switches::kEnableFeatures);
|
|
|
|
auto disable_features =
|
|
|
|
cmd_line->GetSwitchValueASCII(::switches::kDisableFeatures);
|
2018-10-29 13:13:58 +00:00
|
|
|
// Disable creation of spare renderer process with site-per-process mode,
|
|
|
|
// it interferes with our process preference tracking for non sandboxed mode.
|
|
|
|
// Can be reenabled when our site instance policy is aligned with chromium
|
|
|
|
// when node integration is enabled.
|
|
|
|
disable_features +=
|
|
|
|
std::string(",") + features::kSpareRendererForSitePerProcess.name;
|
2018-10-23 20:15:55 +00:00
|
|
|
auto feature_list = std::make_unique<base::FeatureList>();
|
|
|
|
feature_list->InitializeFromCommandLine(enable_features, disable_features);
|
|
|
|
base::FeatureList::SetInstance(std::move(feature_list));
|
|
|
|
}
|
|
|
|
|
|
|
|
#if !defined(OS_MACOSX)
|
|
|
|
void AtomBrowserMainParts::OverrideAppLogsPath() {
|
|
|
|
base::FilePath path;
|
2018-10-24 10:49:10 +00:00
|
|
|
if (base::PathService::Get(DIR_APP_DATA, &path)) {
|
|
|
|
path = path.Append(base::FilePath::FromUTF8Unsafe(GetApplicationName()));
|
2018-10-23 20:15:55 +00:00
|
|
|
path = path.Append(base::FilePath::FromUTF8Unsafe("logs"));
|
2018-10-24 10:49:10 +00:00
|
|
|
base::PathService::Override(DIR_APP_LOGS, path);
|
2018-10-23 20:15:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-04-22 13:32:48 +00:00
|
|
|
// static
|
2016-07-10 09:52:28 +00:00
|
|
|
AtomBrowserMainParts* AtomBrowserMainParts::self_ = nullptr;
|
2013-04-22 13:32:48 +00:00
|
|
|
|
2018-10-04 18:08:56 +00:00
|
|
|
AtomBrowserMainParts::AtomBrowserMainParts(
|
|
|
|
const content::MainFunctionParams& params)
|
2018-10-11 13:52:12 +00:00
|
|
|
: fake_browser_process_(new BrowserProcessImpl),
|
2015-06-18 08:33:12 +00:00
|
|
|
browser_(new Browser),
|
2017-03-08 08:33:44 +00:00
|
|
|
node_bindings_(NodeBindings::Create(NodeBindings::BROWSER)),
|
2017-03-10 08:07:51 +00:00
|
|
|
atom_bindings_(new AtomBindings(uv_default_loop())),
|
2018-10-04 18:08:56 +00:00
|
|
|
main_function_params_(params) {
|
2013-04-22 13:32:48 +00:00
|
|
|
DCHECK(!self_) << "Cannot have two AtomBrowserMainParts";
|
|
|
|
self_ = this;
|
2016-08-03 23:00:25 +00:00
|
|
|
// Register extension scheme as web safe scheme.
|
2018-04-18 01:55:30 +00:00
|
|
|
content::ChildProcessSecurityPolicy::GetInstance()->RegisterWebSafeScheme(
|
|
|
|
"chrome-extension");
|
2013-04-12 01:46:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
AtomBrowserMainParts::~AtomBrowserMainParts() {
|
2017-03-10 08:33:27 +00:00
|
|
|
asar::ClearArchives();
|
2016-03-14 04:59:31 +00:00
|
|
|
// Leak the JavascriptEnvironment on exit.
|
|
|
|
// This is to work around the bug that V8 would be waiting for background
|
|
|
|
// tasks to finish on exit, while somehow it waits forever in Electron, more
|
2018-04-18 01:55:30 +00:00
|
|
|
// about this can be found at
|
|
|
|
// https://github.com/electron/electron/issues/4767. On the other handle there
|
|
|
|
// is actually no need to gracefully shutdown V8 on exit in the main process,
|
|
|
|
// we already ensured all necessary resources get cleaned up, and it would
|
|
|
|
// make quitting faster.
|
2016-03-14 04:59:31 +00:00
|
|
|
ignore_result(js_env_.release());
|
2013-04-12 01:46:58 +00:00
|
|
|
}
|
|
|
|
|
2013-04-22 13:32:48 +00:00
|
|
|
// static
|
|
|
|
AtomBrowserMainParts* AtomBrowserMainParts::Get() {
|
|
|
|
DCHECK(self_);
|
|
|
|
return self_;
|
|
|
|
}
|
|
|
|
|
2015-11-06 10:27:13 +00:00
|
|
|
bool AtomBrowserMainParts::SetExitCode(int code) {
|
|
|
|
if (!exit_code_)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
*exit_code_ = code;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-12-10 02:09:59 +00:00
|
|
|
int AtomBrowserMainParts::GetExitCode() {
|
|
|
|
return exit_code_ != nullptr ? *exit_code_ : 0;
|
|
|
|
}
|
|
|
|
|
2018-03-30 13:24:55 +00:00
|
|
|
void AtomBrowserMainParts::RegisterDestructionCallback(
|
|
|
|
base::OnceClosure callback) {
|
2018-05-17 00:09:45 +00:00
|
|
|
// The destructors should be called in reversed order, so dependencies between
|
|
|
|
// JavaScript objects can be correctly resolved.
|
|
|
|
// For example WebContentsView => WebContents => Session.
|
|
|
|
destructors_.insert(destructors_.begin(), std::move(callback));
|
2015-06-24 09:58:12 +00:00
|
|
|
}
|
|
|
|
|
2018-10-23 20:15:55 +00:00
|
|
|
bool AtomBrowserMainParts::ShouldContentCreateFeatureList() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-04-05 21:09:37 +00:00
|
|
|
int AtomBrowserMainParts::PreEarlyInitialization() {
|
2018-10-23 20:15:55 +00:00
|
|
|
InitializeFeatureList();
|
|
|
|
OverrideAppLogsPath();
|
|
|
|
#if defined(USE_X11)
|
|
|
|
views::LinuxUI::SetInstance(BuildGtkUi());
|
|
|
|
OverrideLinuxAppDataPath();
|
|
|
|
|
|
|
|
// Installs the X11 error handlers for the browser process used during
|
|
|
|
// startup. They simply print error messages and exit because
|
|
|
|
// we can't shutdown properly while creating and initializing services.
|
|
|
|
ui::SetX11ErrorHandlers(nullptr, nullptr);
|
|
|
|
#endif
|
2018-04-05 21:09:37 +00:00
|
|
|
|
2015-10-04 11:21:36 +00:00
|
|
|
#if defined(OS_POSIX)
|
|
|
|
HandleSIGCHLD();
|
|
|
|
#endif
|
2018-04-05 21:09:37 +00:00
|
|
|
|
2018-09-15 00:18:46 +00:00
|
|
|
return service_manager::RESULT_CODE_NORMAL_EXIT;
|
2015-10-04 11:21:36 +00:00
|
|
|
}
|
|
|
|
|
2013-04-13 10:39:09 +00:00
|
|
|
void AtomBrowserMainParts::PostEarlyInitialization() {
|
2018-10-03 07:06:40 +00:00
|
|
|
// A workaround was previously needed because there was no ThreadTaskRunner
|
|
|
|
// set. If this check is failing we may need to re-add that workaround
|
|
|
|
DCHECK(base::ThreadTaskRunnerHandle::IsSet());
|
2015-10-22 06:56:57 +00:00
|
|
|
|
|
|
|
// The ProxyResolverV8 has setup a complete V8 environment, in order to
|
|
|
|
// avoid conflicts we only initialize our V8 environment after that.
|
2018-10-05 18:40:17 +00:00
|
|
|
js_env_.reset(new JavascriptEnvironment(node_bindings_->uv_loop()));
|
2017-12-22 12:17:41 +00:00
|
|
|
|
|
|
|
node_bindings_->Initialize();
|
|
|
|
// Create the global environment.
|
2018-01-06 15:58:24 +00:00
|
|
|
node::Environment* env = node_bindings_->CreateEnvironment(
|
|
|
|
js_env_->context(), js_env_->platform());
|
2017-12-22 12:17:41 +00:00
|
|
|
node_env_.reset(new NodeEnvironment(env));
|
|
|
|
|
|
|
|
// Enable support for v8 inspector
|
|
|
|
node_debugger_.reset(new NodeDebugger(env));
|
2018-09-04 09:15:17 +00:00
|
|
|
node_debugger_->Start();
|
2017-12-22 12:17:41 +00:00
|
|
|
|
|
|
|
// Add Electron extended APIs.
|
|
|
|
atom_bindings_->BindTo(js_env_->isolate(), env->process_object());
|
|
|
|
|
|
|
|
// Load everything.
|
|
|
|
node_bindings_->LoadEnvironment(env);
|
|
|
|
|
|
|
|
// Wrap the uv loop with global env.
|
|
|
|
node_bindings_->set_uv_env(env);
|
2018-08-03 00:53:54 +00:00
|
|
|
|
2018-10-23 20:15:55 +00:00
|
|
|
// We already initialized the feature list in PreEarlyInitialization(), but
|
2018-08-03 00:53:54 +00:00
|
|
|
// the user JS script would not have had a chance to alter the command-line
|
|
|
|
// switches at that point. Lets reinitialize it here to pick up the
|
|
|
|
// command-line changes.
|
|
|
|
base::FeatureList::ClearInstanceForTesting();
|
2018-10-23 20:15:55 +00:00
|
|
|
InitializeFeatureList();
|
2018-11-06 06:10:04 +00:00
|
|
|
|
|
|
|
// Initialize after user script environment creation.
|
|
|
|
fake_browser_process_->PostEarlyInitialization();
|
2013-04-13 10:39:09 +00:00
|
|
|
}
|
|
|
|
|
2017-12-16 09:21:29 +00:00
|
|
|
int AtomBrowserMainParts::PreCreateThreads() {
|
2018-10-23 20:15:55 +00:00
|
|
|
#if defined(USE_AURA)
|
|
|
|
display::Screen* screen = views::CreateDesktopScreen();
|
|
|
|
display::Screen::SetScreenInstance(screen);
|
|
|
|
#if defined(USE_X11)
|
|
|
|
views::LinuxUI::instance()->UpdateDeviceScaleFactor();
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (!views::LayoutProvider::Get())
|
|
|
|
layout_provider_.reset(new views::LayoutProvider());
|
2018-10-23 08:45:41 +00:00
|
|
|
|
|
|
|
// Initialize the app locale.
|
|
|
|
AtomBrowserClient::SetApplicationLocale(
|
|
|
|
l10n_util::GetApplicationLocale(custom_locale_));
|
|
|
|
|
2018-10-23 20:15:55 +00:00
|
|
|
fake_browser_process_->SetApplicationLocale(
|
|
|
|
AtomBrowserClient::Get()->GetApplicationLocale());
|
|
|
|
|
|
|
|
// Force MediaCaptureDevicesDispatcher to be created on UI thread.
|
|
|
|
MediaCaptureDevicesDispatcher::GetInstance();
|
2018-03-14 05:42:08 +00:00
|
|
|
|
2018-10-19 18:51:43 +00:00
|
|
|
// Force MediaCaptureDevicesDispatcher to be created on UI thread.
|
|
|
|
MediaCaptureDevicesDispatcher::GetInstance();
|
|
|
|
|
2018-04-18 01:55:30 +00:00
|
|
|
#if defined(OS_MACOSX)
|
|
|
|
ui::InitIdleMonitor();
|
|
|
|
#endif
|
2018-03-14 05:42:08 +00:00
|
|
|
|
2018-11-07 13:23:09 +00:00
|
|
|
fake_browser_process_->PreCreateThreads(main_function_params_.command_line);
|
2018-10-04 18:08:56 +00:00
|
|
|
|
2018-10-23 20:15:55 +00:00
|
|
|
return 0;
|
2017-12-16 09:21:29 +00:00
|
|
|
}
|
|
|
|
|
2018-10-04 18:08:56 +00:00
|
|
|
void AtomBrowserMainParts::PostDestroyThreads() {
|
2018-10-23 20:15:55 +00:00
|
|
|
#if defined(OS_LINUX)
|
|
|
|
device::BluetoothAdapterFactory::Shutdown();
|
|
|
|
bluez::DBusBluezManagerWrapperLinux::Shutdown();
|
|
|
|
#endif
|
2018-11-07 13:23:09 +00:00
|
|
|
fake_browser_process_->PostDestroyThreads();
|
2018-10-04 18:08:56 +00:00
|
|
|
}
|
|
|
|
|
2018-04-19 06:26:34 +00:00
|
|
|
void AtomBrowserMainParts::ToolkitInitialized() {
|
2018-10-23 20:15:55 +00:00
|
|
|
ui::MaterialDesignController::Initialize();
|
|
|
|
|
|
|
|
#if defined(USE_AURA) && defined(USE_X11)
|
|
|
|
views::LinuxUI::instance()->Initialize();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(USE_AURA)
|
|
|
|
wm_state_.reset(new wm::WMState);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(OS_WIN)
|
|
|
|
gfx::PlatformFontWin::adjust_font_callback = &AdjustUIFont;
|
|
|
|
gfx::PlatformFontWin::get_minimum_font_size_callback = &GetMinimumFontSize;
|
|
|
|
|
|
|
|
wchar_t module_name[MAX_PATH] = {0};
|
|
|
|
if (GetModuleFileName(NULL, module_name, MAX_PATH))
|
|
|
|
ui::CursorLoaderWin::SetCursorResourceModule(module_name);
|
|
|
|
#endif
|
|
|
|
|
2018-04-19 06:26:34 +00:00
|
|
|
#if defined(OS_MACOSX)
|
|
|
|
views_delegate_.reset(new ViewsDelegateMac);
|
2018-04-19 06:38:33 +00:00
|
|
|
#else
|
2018-10-19 13:50:30 +00:00
|
|
|
views_delegate_.reset(new ViewsDelegate);
|
2018-04-19 06:26:34 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2013-05-02 12:09:19 +00:00
|
|
|
void AtomBrowserMainParts::PreMainMessageLoopRun() {
|
2014-08-04 12:50:05 +00:00
|
|
|
// Run user's main script before most things get initialized, so we can have
|
|
|
|
// a chance to setup everything.
|
|
|
|
node_bindings_->PrepareMessageLoop();
|
|
|
|
node_bindings_->RunMessageLoop();
|
|
|
|
|
2018-11-22 17:02:52 +00:00
|
|
|
// url::Add*Scheme are not threadsafe, this helps prevent data races.
|
|
|
|
url::LockSchemeRegistries();
|
|
|
|
|
2016-01-11 11:23:53 +00:00
|
|
|
#if defined(USE_X11)
|
|
|
|
ui::TouchFactory::SetTouchDeviceListFromCommandLine();
|
|
|
|
#endif
|
|
|
|
|
2014-10-17 04:41:40 +00:00
|
|
|
// Start idle gc.
|
2018-04-18 01:55:30 +00:00
|
|
|
gc_timer_.Start(FROM_HERE, base::TimeDelta::FromMinutes(1),
|
|
|
|
base::Bind(&v8::Isolate::LowMemoryNotification,
|
|
|
|
base::Unretained(js_env_->isolate())));
|
2014-10-17 04:41:40 +00:00
|
|
|
|
2017-01-17 14:23:13 +00:00
|
|
|
content::WebUIControllerFactory::RegisterFactory(
|
|
|
|
AtomWebUIControllerFactory::GetInstance());
|
|
|
|
|
2018-10-19 13:50:30 +00:00
|
|
|
// --remote-debugging-port
|
|
|
|
auto* command_line = base::CommandLine::ForCurrentProcess();
|
|
|
|
if (command_line->HasSwitch(switches::kRemoteDebuggingPort))
|
|
|
|
DevToolsManagerDelegate::StartHttpHandler();
|
2013-04-12 07:57:17 +00:00
|
|
|
|
2014-07-03 17:30:36 +00:00
|
|
|
#if defined(USE_X11)
|
2017-01-26 10:55:19 +00:00
|
|
|
libgtkui::GtkInitFromCommandLine(*base::CommandLine::ForCurrentProcess());
|
2014-07-03 17:30:36 +00:00
|
|
|
#endif
|
|
|
|
|
2013-05-30 11:12:14 +00:00
|
|
|
#if !defined(OS_MACOSX)
|
2016-06-18 13:26:26 +00:00
|
|
|
// The corresponding call in macOS is in AtomApplicationDelegate.
|
2013-06-03 07:31:46 +00:00
|
|
|
Browser::Get()->WillFinishLaunching();
|
2018-06-18 07:32:55 +00:00
|
|
|
Browser::Get()->DidFinishLaunching(base::DictionaryValue());
|
2013-05-30 11:12:14 +00:00
|
|
|
#endif
|
2017-09-14 13:08:18 +00:00
|
|
|
|
2018-01-03 09:59:12 +00:00
|
|
|
// Notify observers that main thread message loop was initialized.
|
|
|
|
Browser::Get()->PreMainMessageLoopRun();
|
2013-04-12 07:57:17 +00:00
|
|
|
}
|
|
|
|
|
2015-11-06 10:27:13 +00:00
|
|
|
bool AtomBrowserMainParts::MainMessageLoopRun(int* result_code) {
|
2018-10-15 15:26:47 +00:00
|
|
|
js_env_->OnMessageLoopCreated();
|
2015-11-06 10:27:13 +00:00
|
|
|
exit_code_ = result_code;
|
2018-10-23 20:15:55 +00:00
|
|
|
return content::BrowserMainParts::MainMessageLoopRun(result_code);
|
2015-11-06 10:27:13 +00:00
|
|
|
}
|
|
|
|
|
2018-10-03 21:47:00 +00:00
|
|
|
void AtomBrowserMainParts::PreDefaultMainMessageLoopRun(
|
|
|
|
base::OnceClosure quit_closure) {
|
|
|
|
Browser::SetMainMessageLoopQuitClosure(std::move(quit_closure));
|
|
|
|
}
|
|
|
|
|
2015-10-04 11:21:36 +00:00
|
|
|
void AtomBrowserMainParts::PostMainMessageLoopStart() {
|
2018-10-23 20:15:55 +00:00
|
|
|
#if defined(USE_X11)
|
|
|
|
// Installs the X11 error handlers for the browser process after the
|
|
|
|
// main message loop has started. This will allow us to exit cleanly
|
|
|
|
// if X exits before us.
|
|
|
|
ui::SetX11ErrorHandlers(BrowserX11ErrorHandler, BrowserX11IOErrorHandler);
|
|
|
|
#endif
|
|
|
|
#if defined(OS_LINUX)
|
|
|
|
bluez::DBusBluezManagerWrapperLinux::Initialize();
|
|
|
|
#endif
|
2015-10-04 11:21:36 +00:00
|
|
|
#if defined(OS_POSIX)
|
|
|
|
HandleShutdownSignals();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2015-09-09 11:27:08 +00:00
|
|
|
void AtomBrowserMainParts::PostMainMessageLoopRun() {
|
2018-10-23 20:15:55 +00:00
|
|
|
#if defined(USE_X11)
|
|
|
|
// Unset the X11 error handlers. The X11 error handlers log the errors using a
|
|
|
|
// |PostTask()| on the message-loop. But since the message-loop is in the
|
|
|
|
// process of terminating, this can cause errors.
|
|
|
|
ui::SetX11ErrorHandlers(X11EmptyErrorHandler, X11EmptyIOErrorHandler);
|
|
|
|
#endif
|
2015-09-09 11:27:08 +00:00
|
|
|
|
2016-06-24 05:45:31 +00:00
|
|
|
js_env_->OnMessageLoopDestroying();
|
|
|
|
|
2015-11-04 09:23:27 +00:00
|
|
|
#if defined(OS_MACOSX)
|
|
|
|
FreeAppDelegate();
|
|
|
|
#endif
|
|
|
|
|
2015-09-09 11:27:08 +00:00
|
|
|
// Make sure destruction callbacks are called before message loop is
|
|
|
|
// destroyed, otherwise some objects that need to be deleted on IO thread
|
|
|
|
// won't be freed.
|
2015-12-03 09:04:40 +00:00
|
|
|
// We don't use ranged for loop because iterators are getting invalided when
|
|
|
|
// the callback runs.
|
|
|
|
for (auto iter = destructors_.begin(); iter != destructors_.end();) {
|
2018-03-30 13:24:55 +00:00
|
|
|
base::OnceClosure callback = std::move(*iter);
|
|
|
|
if (!callback.is_null())
|
|
|
|
std::move(callback).Run();
|
2015-12-03 09:04:40 +00:00
|
|
|
++iter;
|
|
|
|
}
|
2018-11-06 06:10:04 +00:00
|
|
|
|
|
|
|
fake_browser_process_->PostMainMessageLoopRun();
|
2015-09-09 11:27:08 +00:00
|
|
|
}
|
|
|
|
|
2018-10-23 20:15:55 +00:00
|
|
|
#if !defined(OS_MACOSX)
|
|
|
|
void AtomBrowserMainParts::PreMainMessageLoopStart() {
|
|
|
|
PreMainMessageLoopStartCommon();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void AtomBrowserMainParts::PreMainMessageLoopStartCommon() {
|
|
|
|
// Initialize ui::ResourceBundle.
|
|
|
|
ui::ResourceBundle::InitSharedInstanceWithLocale(
|
|
|
|
"", nullptr, ui::ResourceBundle::DO_NOT_LOAD_COMMON_RESOURCES);
|
|
|
|
auto* cmd_line = base::CommandLine::ForCurrentProcess();
|
|
|
|
if (cmd_line->HasSwitch(switches::kLang)) {
|
|
|
|
const std::string locale = cmd_line->GetSwitchValueASCII(switches::kLang);
|
|
|
|
const base::FilePath locale_file_path =
|
|
|
|
ui::ResourceBundle::GetSharedInstance().GetLocaleFilePath(locale, true);
|
|
|
|
if (!locale_file_path.empty()) {
|
|
|
|
custom_locale_ = locale;
|
|
|
|
#if defined(OS_LINUX)
|
|
|
|
/* When built with USE_GLIB, libcc's GetApplicationLocaleInternal() uses
|
|
|
|
* glib's g_get_language_names(), which keys off of getenv("LC_ALL") */
|
|
|
|
g_setenv("LC_ALL", custom_locale_.c_str(), TRUE);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(OS_MACOSX)
|
|
|
|
if (custom_locale_.empty())
|
|
|
|
l10n_util::OverrideLocaleWithCocoaLocale();
|
|
|
|
#endif
|
|
|
|
LoadResourceBundle(custom_locale_);
|
|
|
|
#if defined(OS_MACOSX)
|
|
|
|
InitializeMainNib();
|
|
|
|
#endif
|
|
|
|
media::SetLocalizedStringProvider(MediaStringProvider);
|
|
|
|
}
|
|
|
|
|
2018-04-12 09:53:49 +00:00
|
|
|
device::mojom::GeolocationControl*
|
|
|
|
AtomBrowserMainParts::GetGeolocationControl() {
|
|
|
|
if (geolocation_control_)
|
|
|
|
return geolocation_control_.get();
|
|
|
|
|
|
|
|
auto request = mojo::MakeRequest(&geolocation_control_);
|
|
|
|
if (!content::ServiceManagerConnection::GetForProcess())
|
|
|
|
return geolocation_control_.get();
|
|
|
|
|
|
|
|
service_manager::Connector* connector =
|
|
|
|
content::ServiceManagerConnection::GetForProcess()->GetConnector();
|
|
|
|
connector->BindInterface(device::mojom::kServiceName, std::move(request));
|
|
|
|
return geolocation_control_.get();
|
|
|
|
}
|
|
|
|
|
2018-10-05 19:12:53 +00:00
|
|
|
IconManager* AtomBrowserMainParts::GetIconManager() {
|
|
|
|
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
|
|
|
|
if (!icon_manager_.get())
|
|
|
|
icon_manager_.reset(new IconManager);
|
|
|
|
return icon_manager_.get();
|
|
|
|
}
|
|
|
|
|
2013-04-12 01:46:58 +00:00
|
|
|
} // namespace atom
|