// Copyright (c) 2013 GitHub, Inc. // Use of this source code is governed by the MIT license that can be // found in the LICENSE file. #ifndef SHELL_BROWSER_ELECTRON_BROWSER_MAIN_PARTS_H_ #define SHELL_BROWSER_ELECTRON_BROWSER_MAIN_PARTS_H_ #include #include "base/callback.h" #include "base/metrics/field_trial.h" #include "base/timer/timer.h" #include "content/public/browser/browser_context.h" #include "content/public/browser/browser_main_parts.h" #include "content/public/common/main_function_params.h" #include "electron/buildflags/buildflags.h" #include "mojo/public/cpp/bindings/remote.h" #include "services/device/public/mojom/geolocation_control.mojom.h" #include "third_party/abseil-cpp/absl/types/optional.h" #include "ui/views/layout/layout_provider.h" class BrowserProcess; class IconManager; #if defined(USE_AURA) namespace wm { class WMState; } namespace display { class Screen; } #endif #if defined(USE_X11) namespace ui { class GtkUiPlatform; } #endif namespace electron { class ElectronBrowserContext; class Browser; class ElectronBindings; class JavascriptEnvironment; class NodeBindings; class NodeEnvironment; class BridgeTaskRunner; #if BUILDFLAG(ENABLE_ELECTRON_EXTENSIONS) class ElectronExtensionsClient; class ElectronExtensionsBrowserClient; #endif #if defined(TOOLKIT_VIEWS) class ViewsDelegate; #endif #if defined(OS_MAC) class ViewsDelegateMac; #endif #if defined(OS_LINUX) class DarkThemeObserver; #endif class ElectronBrowserMainParts : public content::BrowserMainParts { public: explicit ElectronBrowserMainParts(const content::MainFunctionParams& params); ~ElectronBrowserMainParts() override; static ElectronBrowserMainParts* Get(); // Sets the exit code, will fail if the message loop is not ready. bool SetExitCode(int code); // Gets the exit code int GetExitCode() const; // Returns the connection to GeolocationControl which can be // used to enable the location services once per client. device::mojom::GeolocationControl* GetGeolocationControl(); // Returns handle to the class responsible for extracting file icons. IconManager* GetIconManager(); Browser* browser() { return browser_.get(); } BrowserProcessImpl* browser_process() { return fake_browser_process_.get(); } protected: // content::BrowserMainParts: int PreEarlyInitialization() override; void PostEarlyInitialization() override; int PreCreateThreads() override; void ToolkitInitialized() override; int PreMainMessageLoopRun() override; void WillRunMainMessageLoop( std::unique_ptr& run_loop) override; void PostCreateMainMessageLoop() override; void PostMainMessageLoopRun() override; void PreCreateMainMessageLoop() override; void PostCreateThreads() override; void PostDestroyThreads() override; private: void PreCreateMainMessageLoopCommon(); #if defined(OS_POSIX) // Set signal handlers. void HandleSIGCHLD(); void InstallShutdownSignalHandlers( base::OnceCallback shutdown_callback, const scoped_refptr& task_runner); #endif #if defined(OS_MAC) void FreeAppDelegate(); void RegisterURLHandler(); void InitializeMainNib(); #endif #if defined(OS_MAC) std::unique_ptr views_delegate_; #else std::unique_ptr views_delegate_; #endif #if defined(USE_AURA) std::unique_ptr wm_state_; std::unique_ptr screen_; #endif #if defined(OS_LINUX) // Used to notify the native theme of changes to dark mode. std::unique_ptr dark_theme_observer_; #endif std::unique_ptr layout_provider_; // A fake BrowserProcess object that used to feed the source code from chrome. std::unique_ptr fake_browser_process_; // A place to remember the exit code once the message loop is ready. // Before then, we just exit() without any intermediate steps. absl::optional exit_code_; std::unique_ptr js_env_; std::unique_ptr browser_; std::unique_ptr node_bindings_; std::unique_ptr electron_bindings_; std::unique_ptr node_env_; std::unique_ptr icon_manager_; std::unique_ptr field_trial_list_; #if BUILDFLAG(ENABLE_ELECTRON_EXTENSIONS) std::unique_ptr extensions_client_; std::unique_ptr extensions_browser_client_; #endif mojo::Remote geolocation_control_; static ElectronBrowserMainParts* self_; DISALLOW_COPY_AND_ASSIGN(ElectronBrowserMainParts); }; } // namespace electron #endif // SHELL_BROWSER_ELECTRON_BROWSER_MAIN_PARTS_H_