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.
|
|
|
|
|
2020-02-04 20:19:40 +00:00
|
|
|
#ifndef SHELL_BROWSER_ELECTRON_BROWSER_MAIN_PARTS_H_
|
|
|
|
#define SHELL_BROWSER_ELECTRON_BROWSER_MAIN_PARTS_H_
|
2013-04-12 01:46:58 +00:00
|
|
|
|
2015-06-24 09:58:12 +00:00
|
|
|
#include <list>
|
2018-09-13 00:25:56 +00:00
|
|
|
#include <memory>
|
2015-08-06 15:01:05 +00:00
|
|
|
#include <string>
|
2015-06-24 09:58:12 +00:00
|
|
|
|
|
|
|
#include "base/callback.h"
|
2019-02-23 00:27:18 +00:00
|
|
|
#include "base/metrics/field_trial.h"
|
2014-10-17 04:41:40 +00:00
|
|
|
#include "base/timer/timer.h"
|
2015-08-06 15:01:05 +00:00
|
|
|
#include "content/public/browser/browser_context.h"
|
2018-10-23 20:15:55 +00:00
|
|
|
#include "content/public/browser/browser_main_parts.h"
|
2018-10-04 18:08:56 +00:00
|
|
|
#include "content/public/common/main_function_params.h"
|
2019-07-24 23:01:08 +00:00
|
|
|
#include "electron/buildflags/buildflags.h"
|
2019-12-11 00:22:35 +00:00
|
|
|
#include "mojo/public/cpp/bindings/remote.h"
|
2018-04-12 09:53:49 +00:00
|
|
|
#include "services/device/public/mojom/geolocation_control.mojom.h"
|
2018-10-23 20:15:55 +00:00
|
|
|
#include "ui/views/layout/layout_provider.h"
|
2013-04-12 01:46:58 +00:00
|
|
|
|
2015-06-18 08:33:12 +00:00
|
|
|
class BrowserProcess;
|
2018-10-05 19:12:53 +00:00
|
|
|
class IconManager;
|
2015-06-18 08:33:12 +00:00
|
|
|
|
2018-10-23 20:15:55 +00:00
|
|
|
#if defined(USE_AURA)
|
|
|
|
namespace wm {
|
|
|
|
class WMState;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
namespace electron {
|
2013-04-12 01:46:58 +00:00
|
|
|
|
2020-02-04 20:19:40 +00:00
|
|
|
class ElectronBrowserContext;
|
2013-05-02 15:43:23 +00:00
|
|
|
class Browser;
|
2019-07-24 23:01:08 +00:00
|
|
|
class ElectronBindings;
|
2014-07-28 08:00:15 +00:00
|
|
|
class JavascriptEnvironment;
|
2013-04-13 10:39:09 +00:00
|
|
|
class NodeBindings;
|
2017-05-15 16:30:55 +00:00
|
|
|
class NodeDebugger;
|
2017-02-28 00:56:09 +00:00
|
|
|
class NodeEnvironment;
|
2015-09-02 07:52:17 +00:00
|
|
|
class BridgeTaskRunner;
|
2013-04-13 10:39:09 +00:00
|
|
|
|
2019-07-24 23:01:08 +00:00
|
|
|
#if BUILDFLAG(ENABLE_ELECTRON_EXTENSIONS)
|
2020-02-03 22:01:10 +00:00
|
|
|
class ElectronExtensionsClient;
|
|
|
|
class ElectronExtensionsBrowserClient;
|
2019-07-24 23:01:08 +00:00
|
|
|
#endif
|
|
|
|
|
2018-10-19 13:50:30 +00:00
|
|
|
#if defined(TOOLKIT_VIEWS)
|
|
|
|
class ViewsDelegate;
|
|
|
|
#endif
|
|
|
|
|
2018-04-19 06:26:34 +00:00
|
|
|
#if defined(OS_MACOSX)
|
|
|
|
class ViewsDelegateMac;
|
|
|
|
#endif
|
|
|
|
|
2020-02-04 20:19:40 +00:00
|
|
|
class ElectronBrowserMainParts : public content::BrowserMainParts {
|
2013-04-12 15:16:16 +00:00
|
|
|
public:
|
2020-02-04 20:19:40 +00:00
|
|
|
explicit ElectronBrowserMainParts(const content::MainFunctionParams& params);
|
|
|
|
~ElectronBrowserMainParts() override;
|
2013-04-12 01:46:58 +00:00
|
|
|
|
2020-02-04 20:19:40 +00:00
|
|
|
static ElectronBrowserMainParts* Get();
|
2013-04-22 13:32:48 +00:00
|
|
|
|
2016-03-08 04:22:03 +00:00
|
|
|
// Sets the exit code, will fail if the message loop is not ready.
|
2015-11-06 10:27:13 +00:00
|
|
|
bool SetExitCode(int code);
|
|
|
|
|
2015-12-10 02:09:59 +00:00
|
|
|
// Gets the exit code
|
|
|
|
int GetExitCode();
|
|
|
|
|
2015-06-24 09:58:12 +00:00
|
|
|
// Register a callback that should be destroyed before JavaScript environment
|
|
|
|
// gets destroyed.
|
2015-12-03 09:04:40 +00:00
|
|
|
// Returns a closure that can be used to remove |callback| from the list.
|
2018-03-30 13:24:55 +00:00
|
|
|
void RegisterDestructionCallback(base::OnceClosure callback);
|
2015-06-24 09:58:12 +00:00
|
|
|
|
2018-08-23 15:51:46 +00:00
|
|
|
// Returns the connection to GeolocationControl which can be
|
|
|
|
// used to enable the location services once per client.
|
|
|
|
device::mojom::GeolocationControl* GetGeolocationControl();
|
|
|
|
|
2018-10-05 19:12:53 +00:00
|
|
|
// Returns handle to the class responsible for extracting file icons.
|
|
|
|
IconManager* GetIconManager();
|
|
|
|
|
2013-05-02 15:43:23 +00:00
|
|
|
Browser* browser() { return browser_.get(); }
|
2019-07-03 01:22:09 +00:00
|
|
|
BrowserProcessImpl* browser_process() { return fake_browser_process_.get(); }
|
2013-04-22 13:32:48 +00:00
|
|
|
|
2013-04-12 15:16:16 +00:00
|
|
|
protected:
|
2015-09-05 12:54:36 +00:00
|
|
|
// content::BrowserMainParts:
|
2018-04-05 21:09:37 +00:00
|
|
|
int PreEarlyInitialization() override;
|
2015-01-10 01:24:36 +00:00
|
|
|
void PostEarlyInitialization() override;
|
2017-12-16 09:21:29 +00:00
|
|
|
int PreCreateThreads() override;
|
2018-04-19 06:26:34 +00:00
|
|
|
void ToolkitInitialized() override;
|
2015-01-10 01:24:36 +00:00
|
|
|
void PreMainMessageLoopRun() override;
|
2015-11-06 10:27:13 +00:00
|
|
|
bool MainMessageLoopRun(int* result_code) override;
|
2018-10-03 21:47:00 +00:00
|
|
|
void PreDefaultMainMessageLoopRun(base::OnceClosure quit_closure) override;
|
2015-10-04 11:21:36 +00:00
|
|
|
void PostMainMessageLoopStart() override;
|
2015-09-09 11:27:08 +00:00
|
|
|
void PostMainMessageLoopRun() override;
|
2015-01-10 01:24:36 +00:00
|
|
|
void PreMainMessageLoopStart() override;
|
2019-11-22 02:05:41 +00:00
|
|
|
void PostCreateThreads() override;
|
2018-10-04 18:08:56 +00:00
|
|
|
void PostDestroyThreads() override;
|
2013-04-12 01:46:58 +00:00
|
|
|
|
2013-04-13 10:39:09 +00:00
|
|
|
private:
|
2018-10-23 20:15:55 +00:00
|
|
|
void PreMainMessageLoopStartCommon();
|
|
|
|
|
2015-10-04 11:21:36 +00:00
|
|
|
#if defined(OS_POSIX)
|
|
|
|
// Set signal handlers.
|
|
|
|
void HandleSIGCHLD();
|
|
|
|
void HandleShutdownSignals();
|
|
|
|
#endif
|
|
|
|
|
2015-11-04 09:23:27 +00:00
|
|
|
#if defined(OS_MACOSX)
|
|
|
|
void FreeAppDelegate();
|
2019-10-10 15:54:03 +00:00
|
|
|
void RegisterURLHandler();
|
2019-10-21 21:11:09 +00:00
|
|
|
void InitializeMainNib();
|
2015-11-04 09:23:27 +00:00
|
|
|
#endif
|
|
|
|
|
2018-04-19 06:26:34 +00:00
|
|
|
#if defined(OS_MACOSX)
|
|
|
|
std::unique_ptr<ViewsDelegateMac> views_delegate_;
|
2018-04-19 06:38:33 +00:00
|
|
|
#else
|
2018-10-19 13:50:30 +00:00
|
|
|
std::unique_ptr<ViewsDelegate> views_delegate_;
|
2018-04-19 06:26:34 +00:00
|
|
|
#endif
|
|
|
|
|
2018-10-23 20:15:55 +00:00
|
|
|
#if defined(USE_AURA)
|
|
|
|
std::unique_ptr<wm::WMState> wm_state_;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
std::unique_ptr<views::LayoutProvider> layout_provider_;
|
|
|
|
|
2015-06-18 08:33:12 +00:00
|
|
|
// A fake BrowserProcess object that used to feed the source code from chrome.
|
2018-10-11 13:52:12 +00:00
|
|
|
std::unique_ptr<BrowserProcessImpl> fake_browser_process_;
|
2015-06-18 08:33:12 +00:00
|
|
|
|
2015-11-06 10:27:13 +00:00
|
|
|
// Pointer to exit code.
|
2018-05-21 22:18:38 +00:00
|
|
|
int* exit_code_ = nullptr;
|
2015-11-06 10:27:13 +00:00
|
|
|
|
2016-05-23 01:59:39 +00:00
|
|
|
std::unique_ptr<JavascriptEnvironment> js_env_;
|
2020-03-20 21:15:55 +00:00
|
|
|
std::unique_ptr<Browser> browser_;
|
2016-05-23 01:59:39 +00:00
|
|
|
std::unique_ptr<NodeBindings> node_bindings_;
|
2019-03-18 19:37:06 +00:00
|
|
|
std::unique_ptr<ElectronBindings> electron_bindings_;
|
2017-03-20 20:01:28 +00:00
|
|
|
std::unique_ptr<NodeEnvironment> node_env_;
|
2017-05-15 16:30:55 +00:00
|
|
|
std::unique_ptr<NodeDebugger> node_debugger_;
|
2018-10-05 19:12:53 +00:00
|
|
|
std::unique_ptr<IconManager> icon_manager_;
|
2019-02-23 00:27:18 +00:00
|
|
|
std::unique_ptr<base::FieldTrialList> field_trial_list_;
|
2014-06-30 06:16:16 +00:00
|
|
|
|
2019-07-24 23:01:08 +00:00
|
|
|
#if BUILDFLAG(ENABLE_ELECTRON_EXTENSIONS)
|
2020-02-03 22:01:10 +00:00
|
|
|
std::unique_ptr<ElectronExtensionsClient> extensions_client_;
|
|
|
|
std::unique_ptr<ElectronExtensionsBrowserClient> extensions_browser_client_;
|
2019-07-24 23:01:08 +00:00
|
|
|
#endif
|
|
|
|
|
2018-10-02 19:05:51 +00:00
|
|
|
base::RepeatingTimer gc_timer_;
|
2014-10-17 04:41:40 +00:00
|
|
|
|
2015-06-24 09:58:12 +00:00
|
|
|
// List of callbacks should be executed before destroying JS env.
|
2018-03-30 13:24:55 +00:00
|
|
|
std::list<base::OnceClosure> destructors_;
|
2015-06-24 09:58:12 +00:00
|
|
|
|
2019-12-11 00:22:35 +00:00
|
|
|
mojo::Remote<device::mojom::GeolocationControl> geolocation_control_;
|
2018-04-12 09:53:49 +00:00
|
|
|
|
2020-02-04 20:19:40 +00:00
|
|
|
static ElectronBrowserMainParts* self_;
|
2013-04-22 13:32:48 +00:00
|
|
|
|
2020-02-04 20:19:40 +00:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(ElectronBrowserMainParts);
|
2013-04-12 01:46:58 +00:00
|
|
|
};
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
} // namespace electron
|
2013-04-12 01:46:58 +00:00
|
|
|
|
2020-02-04 20:19:40 +00:00
|
|
|
#endif // SHELL_BROWSER_ELECTRON_BROWSER_MAIN_PARTS_H_
|