2018-10-11 13:52:12 +00:00
|
|
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
// This interface is for managing the global services of the application. Each
|
|
|
|
// service is lazily created when requested the first time. The service getters
|
2023-10-03 19:26:35 +00:00
|
|
|
// will return nullptr if the service is not available, so callers must check
|
|
|
|
// for this condition.
|
2018-10-11 13:52:12 +00:00
|
|
|
|
2021-11-22 07:34:31 +00:00
|
|
|
#ifndef ELECTRON_SHELL_BROWSER_BROWSER_PROCESS_IMPL_H_
|
|
|
|
#define ELECTRON_SHELL_BROWSER_BROWSER_PROCESS_IMPL_H_
|
2018-10-11 13:52:12 +00:00
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
#include <string>
|
|
|
|
|
2018-11-06 06:10:04 +00:00
|
|
|
#include "base/command_line.h"
|
2018-10-11 13:52:12 +00:00
|
|
|
#include "chrome/browser/browser_process.h"
|
2023-05-23 19:58:58 +00:00
|
|
|
#include "components/embedder_support/origin_trials/origin_trials_settings_storage.h"
|
2018-11-06 06:10:04 +00:00
|
|
|
#include "components/prefs/pref_service.h"
|
|
|
|
#include "components/prefs/value_map_pref_store.h"
|
2018-11-09 03:42:34 +00:00
|
|
|
#include "printing/buildflags/buildflags.h"
|
2023-05-31 15:06:25 +00:00
|
|
|
#include "services/network/public/cpp/network_quality_tracker.h"
|
2018-10-11 13:52:12 +00:00
|
|
|
#include "services/network/public/cpp/shared_url_loader_factory.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/net/system_network_context_manager.h"
|
2018-10-11 13:52:12 +00:00
|
|
|
|
2023-07-13 09:14:33 +00:00
|
|
|
#if BUILDFLAG(IS_LINUX)
|
|
|
|
#include "components/os_crypt/sync/key_storage_util_linux.h"
|
|
|
|
#endif
|
|
|
|
|
2018-10-11 13:52:12 +00:00
|
|
|
namespace printing {
|
|
|
|
class PrintJobManager;
|
|
|
|
}
|
|
|
|
|
2024-02-22 17:08:25 +00:00
|
|
|
namespace electron {
|
|
|
|
class ResolveProxyHelper;
|
|
|
|
}
|
|
|
|
|
2021-07-02 00:51:37 +00:00
|
|
|
// Empty definition for std::unique_ptr, rather than a forward declaration
|
2018-10-11 13:52:12 +00:00
|
|
|
class BackgroundModeManager {};
|
|
|
|
|
|
|
|
// NOT THREAD SAFE, call only from the main thread.
|
2023-10-03 19:26:35 +00:00
|
|
|
// These functions shouldn't return nullptr unless otherwise noted.
|
2018-10-11 13:52:12 +00:00
|
|
|
class BrowserProcessImpl : public BrowserProcess {
|
|
|
|
public:
|
|
|
|
BrowserProcessImpl();
|
|
|
|
~BrowserProcessImpl() override;
|
|
|
|
|
2021-11-03 11:41:45 +00:00
|
|
|
// disable copy
|
|
|
|
BrowserProcessImpl(const BrowserProcessImpl&) = delete;
|
|
|
|
BrowserProcessImpl& operator=(const BrowserProcessImpl&) = delete;
|
|
|
|
|
2018-11-06 06:10:04 +00:00
|
|
|
static void ApplyProxyModeFromCommandLine(ValueMapPrefStore* pref_store);
|
|
|
|
|
2020-02-06 07:05:30 +00:00
|
|
|
BuildState* GetBuildState() override;
|
2018-11-06 06:10:04 +00:00
|
|
|
void PostEarlyInitialization();
|
2019-07-03 01:22:09 +00:00
|
|
|
void PreCreateThreads();
|
2023-05-31 15:06:25 +00:00
|
|
|
void PreMainMessageLoopRun();
|
2019-08-07 15:04:09 +00:00
|
|
|
void PostDestroyThreads() {}
|
2018-11-06 06:10:04 +00:00
|
|
|
void PostMainMessageLoopRun();
|
2022-09-23 18:50:46 +00:00
|
|
|
void SetSystemLocale(const std::string& locale);
|
|
|
|
const std::string& GetSystemLocale() const;
|
2024-02-22 17:08:25 +00:00
|
|
|
electron::ResolveProxyHelper* GetResolveProxyHelper();
|
2022-09-23 18:50:46 +00:00
|
|
|
|
2023-07-13 09:14:33 +00:00
|
|
|
#if BUILDFLAG(IS_LINUX)
|
|
|
|
void SetLinuxStorageBackend(os_crypt::SelectedLinuxBackend selected_backend);
|
2024-02-09 09:29:14 +00:00
|
|
|
[[nodiscard]] const std::string& linux_storage_backend() const {
|
|
|
|
return selected_linux_storage_backend_;
|
|
|
|
}
|
2023-07-13 09:14:33 +00:00
|
|
|
#endif
|
|
|
|
|
2018-10-11 13:52:12 +00:00
|
|
|
void EndSession() override {}
|
|
|
|
void FlushLocalStateAndReply(base::OnceClosure reply) override {}
|
|
|
|
bool IsShuttingDown() override;
|
|
|
|
|
|
|
|
metrics_services_manager::MetricsServicesManager* GetMetricsServicesManager()
|
|
|
|
override;
|
|
|
|
metrics::MetricsService* metrics_service() override;
|
|
|
|
ProfileManager* profile_manager() override;
|
|
|
|
PrefService* local_state() override;
|
|
|
|
scoped_refptr<network::SharedURLLoaderFactory> shared_url_loader_factory()
|
|
|
|
override;
|
|
|
|
variations::VariationsService* variations_service() override;
|
|
|
|
BrowserProcessPlatformPart* platform_part() override;
|
|
|
|
extensions::EventRouterForwarder* extension_event_router_forwarder() override;
|
|
|
|
NotificationUIManager* notification_ui_manager() override;
|
|
|
|
NotificationPlatformBridge* notification_platform_bridge() override;
|
|
|
|
SystemNetworkContextManager* system_network_context_manager() override;
|
|
|
|
network::NetworkQualityTracker* network_quality_tracker() override;
|
2023-05-23 19:58:58 +00:00
|
|
|
embedder_support::OriginTrialsSettingsStorage*
|
|
|
|
GetOriginTrialsSettingsStorage() override;
|
2018-10-11 13:52:12 +00:00
|
|
|
policy::ChromeBrowserPolicyConnector* browser_policy_connector() override;
|
|
|
|
policy::PolicyService* policy_service() override;
|
|
|
|
IconManager* icon_manager() override;
|
|
|
|
GpuModeManager* gpu_mode_manager() override;
|
|
|
|
printing::PrintPreviewDialogController* print_preview_dialog_controller()
|
|
|
|
override;
|
|
|
|
printing::BackgroundPrintingManager* background_printing_manager() override;
|
|
|
|
IntranetRedirectDetector* intranet_redirect_detector() override;
|
|
|
|
DownloadStatusUpdater* download_status_updater() override;
|
|
|
|
DownloadRequestLimiter* download_request_limiter() override;
|
|
|
|
BackgroundModeManager* background_mode_manager() override;
|
|
|
|
StatusTray* status_tray() override;
|
|
|
|
safe_browsing::SafeBrowsingService* safe_browsing_service() override;
|
2019-01-09 22:55:35 +00:00
|
|
|
subresource_filter::RulesetService* subresource_filter_ruleset_service()
|
|
|
|
override;
|
2018-10-11 13:52:12 +00:00
|
|
|
component_updater::ComponentUpdateService* component_updater() override;
|
|
|
|
MediaFileSystemRegistry* media_file_system_registry() override;
|
|
|
|
WebRtcLogUploader* webrtc_log_uploader() override;
|
|
|
|
network_time::NetworkTimeTracker* network_time_tracker() override;
|
|
|
|
gcm::GCMDriver* gcm_driver() override;
|
2019-01-10 00:47:31 +00:00
|
|
|
resource_coordinator::ResourceCoordinatorParts* resource_coordinator_parts()
|
|
|
|
override;
|
2018-10-11 13:52:12 +00:00
|
|
|
resource_coordinator::TabManager* GetTabManager() override;
|
2021-06-05 02:03:31 +00:00
|
|
|
SerialPolicyAllowedPorts* serial_policy_allowed_ports() override;
|
2023-01-06 02:35:34 +00:00
|
|
|
HidSystemTrayIcon* hid_system_tray_icon() override;
|
2023-07-18 22:26:27 +00:00
|
|
|
UsbSystemTrayIcon* usb_system_tray_icon() override;
|
2023-10-24 15:24:20 +00:00
|
|
|
os_crypt_async::OSCryptAsync* os_crypt_async() override;
|
2018-10-11 13:52:12 +00:00
|
|
|
void CreateDevToolsProtocolHandler() override {}
|
|
|
|
void CreateDevToolsAutoOpener() override {}
|
|
|
|
void set_background_mode_manager_for_test(
|
|
|
|
std::unique_ptr<BackgroundModeManager> manager) override {}
|
2022-02-10 02:58:52 +00:00
|
|
|
#if (BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX))
|
2018-10-11 13:52:12 +00:00
|
|
|
void StartAutoupdateTimer() override {}
|
|
|
|
#endif
|
|
|
|
void SetApplicationLocale(const std::string& locale) override;
|
|
|
|
const std::string& GetApplicationLocale() override;
|
|
|
|
printing::PrintJobManager* print_job_manager() override;
|
2019-05-01 20:42:49 +00:00
|
|
|
StartupData* startup_data() override;
|
2018-10-11 13:52:12 +00:00
|
|
|
|
2024-02-22 17:08:25 +00:00
|
|
|
ValueMapPrefStore* in_memory_pref_store() const {
|
|
|
|
return in_memory_pref_store_.get();
|
|
|
|
}
|
|
|
|
|
2018-10-11 13:52:12 +00:00
|
|
|
private:
|
2023-05-31 15:06:25 +00:00
|
|
|
void CreateNetworkQualityObserver();
|
2023-10-24 15:24:20 +00:00
|
|
|
void CreateOSCryptAsync();
|
2023-05-31 15:06:25 +00:00
|
|
|
network::NetworkQualityTracker* GetNetworkQualityTracker();
|
|
|
|
|
2018-11-09 03:42:34 +00:00
|
|
|
#if BUILDFLAG(ENABLE_PRINTING)
|
2018-10-11 13:52:12 +00:00
|
|
|
std::unique_ptr<printing::PrintJobManager> print_job_manager_;
|
2018-11-09 03:42:34 +00:00
|
|
|
#endif
|
2018-11-06 06:10:04 +00:00
|
|
|
std::unique_ptr<PrefService> local_state_;
|
2018-10-11 13:52:12 +00:00
|
|
|
std::string locale_;
|
2022-09-23 18:50:46 +00:00
|
|
|
std::string system_locale_;
|
2023-07-13 09:14:33 +00:00
|
|
|
#if BUILDFLAG(IS_LINUX)
|
|
|
|
std::string selected_linux_storage_backend_;
|
|
|
|
#endif
|
2023-05-23 19:58:58 +00:00
|
|
|
embedder_support::OriginTrialsSettingsStorage origin_trials_settings_storage_;
|
2023-05-31 15:06:25 +00:00
|
|
|
|
2024-02-22 17:08:25 +00:00
|
|
|
scoped_refptr<ValueMapPrefStore> in_memory_pref_store_;
|
|
|
|
scoped_refptr<electron::ResolveProxyHelper> resolve_proxy_helper_;
|
2023-05-31 15:06:25 +00:00
|
|
|
std::unique_ptr<network::NetworkQualityTracker> network_quality_tracker_;
|
|
|
|
std::unique_ptr<
|
|
|
|
network::NetworkQualityTracker::RTTAndThroughputEstimatesObserver>
|
|
|
|
network_quality_observer_;
|
2023-10-24 15:24:20 +00:00
|
|
|
|
|
|
|
std::unique_ptr<os_crypt_async::OSCryptAsync> os_crypt_async_;
|
2018-10-11 13:52:12 +00:00
|
|
|
};
|
|
|
|
|
2021-11-22 07:34:31 +00:00
|
|
|
#endif // ELECTRON_SHELL_BROWSER_BROWSER_PROCESS_IMPL_H_
|