1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// When each service is created, we set a flag indicating this. At this point,
// the service initialization could fail or succeed. This allows us to remember
// if we tried to create a service, and not try creating it over and over if
// the creation failed.
#ifndef CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_
#define CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_
#include <stdint.h>
#include <memory>
#include <optional>
#include <string>
#include <utility>
#include "base/callback_list.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/scoped_refptr.h"
#include "base/sequence_checker.h"
#include "base/timer/timer.h"
#include "build/build_config.h"
#include "chrome/browser/browser_process.h"
#include "chrome/common/buildflags.h"
#include "components/keep_alive_registry/keep_alive_state_observer.h"
#include "components/metrics_services_manager/metrics_services_manager.h"
#include "components/nacl/common/buildflags.h"
#include "components/prefs/persistent_pref_store.h"
#include "components/prefs/pref_change_registrar.h"
#include "components/safe_browsing/buildflags.h"
#include "extensions/buildflags/buildflags.h"
#include "media/media_buildflags.h"
#include "ppapi/buildflags/buildflags.h"
#include "printing/buildflags/buildflags.h"
#include "services/network/public/cpp/network_quality_tracker.h"
#include "services/network/public/mojom/network_service.mojom-forward.h"
#if !BUILDFLAG(IS_ANDROID)
#include "chrome/browser/upgrade_detector/build_state.h"
#endif
#if BUILDFLAG(IS_ANDROID)
#include "base/android/application_status_listener.h"
#include "chrome/browser/accessibility/accessibility_prefs/android/accessibility_prefs_controller.h"
#endif // BUILDFLAG(IS_ANDROID)
class BatteryMetrics;
class ChromeMetricsServicesManagerClient;
class DevToolsAutoOpener;
class GlobalFeatures;
class RemoteDebuggingServer;
class PrefRegistrySimple;
class SecureOriginPrefsObserver;
class SiteIsolationPrefsObserver;
class SystemNotificationHelper;
class StartupData;
namespace breadcrumbs {
class ApplicationBreadcrumbsLogger;
} // namespace breadcrumbs
namespace embedder_support {
class OriginTrialsSettingsStorage;
} // namespace embedder_support
namespace extensions {
class ExtensionsBrowserClient;
}
namespace gcm {
class GCMDriver;
}
namespace os_crypt_async {
class KeyProvider;
class OSCryptAsync;
}
namespace policy {
class ChromeBrowserPolicyConnector;
class PolicyService;
} // namespace policy
namespace webrtc_event_logging {
class WebRtcEventLogManager;
} // namespace webrtc_event_logging
namespace speech {
class SodaInstaller;
} // namespace speech
namespace screen_ai {
class ScreenAIInstallState;
} // namespace screen_ai
// Real implementation of BrowserProcess that creates and returns the services.
class BrowserProcessImpl : public BrowserProcess,
public KeepAliveStateObserver {
public:
// |startup_data| should not be null. The BrowserProcessImpl
// will take the PrefService owned by the creator as the Local State instead
// of loading the JSON file from disk.
explicit BrowserProcessImpl(StartupData* startup_data);
BrowserProcessImpl(const BrowserProcessImpl&) = delete;
BrowserProcessImpl& operator=(const BrowserProcessImpl&) = delete;
~BrowserProcessImpl() override;
// Called to complete initialization.
void Init();
#if !BUILDFLAG(IS_ANDROID)
// Sets a closure to be run to break out of a run loop on browser shutdown
// (when the KeepAlive count reaches zero).
// TODO(crbug.com/41390731): This is also used on macOS for the Cocoa
// first run dialog so that shutdown can be initiated via a signal while the
// first run dialog is showing.
void SetQuitClosure(base::OnceClosure quit_closure);
#endif
#if BUILDFLAG(IS_MAC)
// Clears the quit closure. Shutdown will not be initiated should the
// KeepAlive count reach zero. This function may be called more than once.
// TODO(crbug.com/41390731): Remove this once the Cocoa first run
// dialog no longer needs it.
void ClearQuitClosure();
#endif
// Called before the browser threads are created.
void PreCreateThreads();
// Called after the threads have been created but before the message loops
// starts running. Allows the browser process to do any initialization that
// requires all threads running.
void PreMainMessageLoopRun();
// Most cleanup is done by these functions, driven from
// ChromeBrowserMain based on notifications from the content
// framework, rather than in the destructor, so that we can
// interleave cleanup with threads being stopped.
#if !BUILDFLAG(IS_ANDROID)
void StartTearDown();
void PostDestroyThreads();
#endif
// Sets |metrics_services_manager_| and |metrics_services_manager_client_|
// which is owned by it.
void SetMetricsServices(
std::unique_ptr<metrics_services_manager::MetricsServicesManager> manager,
metrics_services_manager::MetricsServicesManagerClient* client);
// BrowserProcess implementation.
void EndSession() override;
void FlushLocalStateAndReply(base::OnceClosure reply) override;
metrics_services_manager::MetricsServicesManager* GetMetricsServicesManager()
override;
metrics::MetricsService* metrics_service() override;
// TODO(qinmin): Remove this method as callers can retrieve the global
// instance from SystemNetworkContextManager directly.
SystemNetworkContextManager* system_network_context_manager() override;
scoped_refptr<network::SharedURLLoaderFactory> shared_url_loader_factory()
override;
network::NetworkQualityTracker* network_quality_tracker() override;
embedder_support::OriginTrialsSettingsStorage*
GetOriginTrialsSettingsStorage() override;
ProfileManager* profile_manager() override;
PrefService* local_state() override;
signin::ActivePrimaryAccountsMetricsRecorder*
active_primary_accounts_metrics_recorder() override;
variations::VariationsService* variations_service() override;
BrowserProcessPlatformPart* platform_part() override;
NotificationUIManager* notification_ui_manager() override;
NotificationPlatformBridge* notification_platform_bridge() override;
policy::ChromeBrowserPolicyConnector* browser_policy_connector() override;
policy::PolicyService* policy_service() override;
IconManager* icon_manager() override;
GpuModeManager* gpu_mode_manager() override;
void CreateDevToolsProtocolHandler() override;
void CreateDevToolsAutoOpener() override;
bool IsShuttingDown() override;
printing::PrintJobManager* print_job_manager() override;
printing::PrintPreviewDialogController* print_preview_dialog_controller()
override;
printing::BackgroundPrintingManager* background_printing_manager() override;
#if !BUILDFLAG(IS_ANDROID)
IntranetRedirectDetector* intranet_redirect_detector() override;
#endif
const std::string& GetApplicationLocale() override;
void SetApplicationLocale(const std::string& actual_locale) override;
DownloadStatusUpdater* download_status_updater() override;
DownloadRequestLimiter* download_request_limiter() override;
#if BUILDFLAG(ENABLE_BACKGROUND_MODE)
BackgroundModeManager* background_mode_manager() override;
void set_background_mode_manager_for_test(
std::unique_ptr<BackgroundModeManager> manager) override;
#endif
StatusTray* status_tray() override;
#if BUILDFLAG(SAFE_BROWSING_AVAILABLE)
safe_browsing::SafeBrowsingService* safe_browsing_service() override;
#endif
subresource_filter::RulesetService* subresource_filter_ruleset_service()
override;
subresource_filter::RulesetService*
fingerprinting_protection_ruleset_service() override;
StartupData* startup_data() override;
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX)
void StartAutoupdateTimer() override;
#endif
component_updater::ComponentUpdateService* component_updater() override;
MediaFileSystemRegistry* media_file_system_registry() override;
WebRtcLogUploader* webrtc_log_uploader() override;
network_time::NetworkTimeTracker* network_time_tracker() override;
#if !BUILDFLAG(IS_ANDROID)
gcm::GCMDriver* gcm_driver() override;
#endif
resource_coordinator::TabManager* GetTabManager() override;
resource_coordinator::ResourceCoordinatorParts* resource_coordinator_parts()
override;
SerialPolicyAllowedPorts* serial_policy_allowed_ports() override;
#if !BUILDFLAG(IS_ANDROID)
HidSystemTrayIcon* hid_system_tray_icon() override;
UsbSystemTrayIcon* usb_system_tray_icon() override;
#endif
os_crypt_async::OSCryptAsync* os_crypt_async() override;
void set_additional_os_crypt_async_provider_for_test(
size_t precedence,
std::unique_ptr<os_crypt_async::KeyProvider> provider) override;
BuildState* GetBuildState() override;
static void RegisterPrefs(PrefRegistrySimple* registry);
GlobalFeatures* GetFeatures() override;
void CreateGlobalFeaturesForTesting() override;
private:
using WebRtcEventLogManager = webrtc_event_logging::WebRtcEventLogManager;
// KeepAliveStateObserver implementation
void OnKeepAliveStateChanged(bool is_keeping_alive) override;
void OnKeepAliveRestartStateChanged(bool can_restart) override;
// Create network quality observer so that it can propagate network quality
// changes to the render process.
void CreateNetworkQualityObserver();
void CreateProfileManager();
void CreateIconManager();
void CreateNotificationPlatformBridge();
void CreateNotificationUIManager();
void CreatePrintPreviewDialogController();
void CreateBackgroundPrintingManager();
#if BUILDFLAG(SAFE_BROWSING_AVAILABLE)
void CreateSafeBrowsingService();
#endif
void CreateSubresourceFilterRulesetService();
void CreateFingerprintingProtectionRulesetService();
void CreateOptimizationGuideService();
void CreateStatusTray();
void CreateBackgroundModeManager();
void CreateGCMDriver();
void CreateNetworkTimeTracker();
void ApplyDefaultBrowserPolicy();
// ApplicationLocaleStorage callback
void OnLocaleChanged(const std::string& new_locale);
// Methods called to control our lifetime. The browser process can be "pinned"
// to make sure it keeps running.
void Pin();
void Unpin();
const raw_ptr<StartupData> startup_data_;
// Must be destroyed after |browser_policy_connector_|.
std::unique_ptr<gcm::GCMDriver> gcm_driver_;
// Must be destroyed after |local_state_|.
// Must be destroyed after |profile_manager_|.
// Must be destroyed before |gcm_driver_|.
std::unique_ptr<policy::ChromeBrowserPolicyConnector> const
browser_policy_connector_;
// Must be destroyed before |browser_policy_connector_|.
bool created_profile_manager_ = false;
std::unique_ptr<ProfileManager> profile_manager_;
const std::unique_ptr<PrefService> local_state_;
// Must be destroyed before |local_state_|.
std::unique_ptr<signin::ActivePrimaryAccountsMetricsRecorder>
active_primary_accounts_metrics_recorder_;
// Must be destroyed before |local_state_| and after
// |metrics_services_manager_client_|.
std::unique_ptr<metrics_services_manager::MetricsServicesManager>
metrics_services_manager_;
// |metrics_services_manager_| owns this.
raw_ptr<ChromeMetricsServicesManagerClient> metrics_services_manager_client_ =
nullptr;
#if BUILDFLAG(IS_ANDROID)
// Must be destroyed before |local_state_|.
std::unique_ptr<accessibility::AccessibilityPrefsController>
accessibility_prefs_controller_;
#endif
std::unique_ptr<network::NetworkQualityTracker> network_quality_tracker_;
// Listens to NetworkQualityTracker and sends network quality updates to the
// renderer.
std::unique_ptr<
network::NetworkQualityTracker::RTTAndThroughputEstimatesObserver>
network_quality_observer_;
std::unique_ptr<embedder_support::OriginTrialsSettingsStorage>
origin_trials_settings_storage_;
bool created_icon_manager_ = false;
std::unique_ptr<IconManager> icon_manager_;
std::unique_ptr<GpuModeManager> gpu_mode_manager_;
#if BUILDFLAG(ENABLE_EXTENSIONS_CORE)
std::unique_ptr<extensions::ExtensionsBrowserClient>
extensions_browser_client_;
#endif
#if BUILDFLAG(ENABLE_EXTENSIONS)
std::unique_ptr<MediaFileSystemRegistry> media_file_system_registry_;
#endif
#if !BUILDFLAG(IS_ANDROID)
std::unique_ptr<RemoteDebuggingServer> remote_debugging_server_;
std::unique_ptr<DevToolsAutoOpener> devtools_auto_opener_;
#endif
#if BUILDFLAG(ENABLE_PRINT_PREVIEW)
std::unique_ptr<printing::PrintPreviewDialogController>
print_preview_dialog_controller_;
std::unique_ptr<printing::BackgroundPrintingManager>
background_printing_manager_;
#endif
#if BUILDFLAG(ENABLE_CHROME_NOTIFICATIONS)
// Manager for desktop notification UI.
bool created_notification_ui_manager_ = false;
std::unique_ptr<NotificationUIManager> notification_ui_manager_;
#endif
#if !BUILDFLAG(IS_ANDROID)
std::unique_ptr<IntranetRedirectDetector> intranet_redirect_detector_;
#endif
std::unique_ptr<StatusTray> status_tray_;
bool created_notification_bridge_ = false;
std::unique_ptr<NotificationPlatformBridge> notification_bridge_;
// Use SystemNotificationHelper::GetInstance to get this instance.
std::unique_ptr<SystemNotificationHelper> system_notification_helper_;
#if BUILDFLAG(ENABLE_BACKGROUND_MODE)
// Must be destroyed after the profile manager, because it doesn't remove
// itself as a profile attributes storage observer on destruction.
std::unique_ptr<BackgroundModeManager> background_mode_manager_;
#endif
#if BUILDFLAG(SAFE_BROWSING_AVAILABLE)
bool created_safe_browsing_service_ = false;
scoped_refptr<safe_browsing::SafeBrowsingService> safe_browsing_service_;
#endif
bool created_subresource_filter_ruleset_service_ = false;
std::unique_ptr<subresource_filter::RulesetService>
subresource_filter_ruleset_service_;
bool created_fingerprinting_protection_ruleset_service_ = false;
std::unique_ptr<subresource_filter::RulesetService>
fingerprinting_protection_ruleset_service_;
bool shutting_down_ = false;
bool tearing_down_ = false;
#if BUILDFLAG(ENABLE_PRINTING)
// Ensures that all the print jobs are finished before closing the browser.
std::unique_ptr<printing::PrintJobManager> print_job_manager_;
#endif
base::CallbackListSubscription on_locale_changed_callback_subscription_;
// Download status updates (like a changing application icon on dock/taskbar)
// are global per-application. DownloadStatusUpdater does no work in the ctor
// so we don't have to worry about lazy initialization.
std::unique_ptr<DownloadStatusUpdater> download_status_updater_;
scoped_refptr<DownloadRequestLimiter> download_request_limiter_;
// Ensures that the observers of plugin/print disable/enable state
// notifications are properly added and removed.
PrefChangeRegistrar pref_change_registrar_;
std::unique_ptr<BatteryMetrics> battery_metrics_;
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX)
base::RepeatingTimer autoupdate_timer_;
// Gets called by autoupdate timer to see if browser needs restart and can be
// restarted, and if that's the case, restarts the browser.
void OnAutoupdateTimer();
bool IsRunningInBackground() const;
void OnPendingRestartResult(bool is_update_pending_restart);
void RestartBackgroundInstance();
#endif // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX)
// component updater is normally not used under ChromeOS due
// to concerns over integrity of data shared between profiles,
// but some users of component updater only install per-user.
std::unique_ptr<component_updater::ComponentUpdateService> component_updater_;
#if !BUILDFLAG(IS_ANDROID)
// Used to create a singleton instance of SodaInstallerImpl, which can be
// retrieved using speech::SodaInstaller::GetInstance().
// SodaInstallerImpl depends on ComponentUpdateService, so define it here
// to ensure that SodaInstallerImpl gets destructed first.
std::unique_ptr<speech::SodaInstaller> soda_installer_impl_;
// Used to download Screen AI on demand and keep track of the library
// availability.
std::unique_ptr<screen_ai::ScreenAIInstallState> screen_ai_download_;
#endif
std::unique_ptr<BrowserProcessPlatformPart> platform_part_;
// Lazily initialized.
std::unique_ptr<WebRtcLogUploader> webrtc_log_uploader_;
// WebRtcEventLogManager is a singleton which is instaniated before anything
// that needs it, and lives until ~BrowserProcessImpl(). This allows it to
// safely post base::Unretained(this) references to an internally owned task
// queue, since after ~BrowserProcessImpl(), those tasks would no longer run.
std::unique_ptr<WebRtcEventLogManager> webrtc_event_log_manager_;
std::unique_ptr<network_time::NetworkTimeTracker> network_time_tracker_;
std::unique_ptr<resource_coordinator::ResourceCoordinatorParts>
resource_coordinator_parts_;
std::unique_ptr<SecureOriginPrefsObserver> secure_origin_prefs_observer_;
std::unique_ptr<SiteIsolationPrefsObserver> site_isolation_prefs_observer_;
std::unique_ptr<SerialPolicyAllowedPorts> serial_policy_allowed_ports_;
#if !BUILDFLAG(IS_ANDROID)
// Called to signal the process' main message loop to exit.
base::OnceClosure quit_closure_;
std::unique_ptr<HidSystemTrayIcon> hid_system_tray_icon_;
std::unique_ptr<UsbSystemTrayIcon> usb_system_tray_icon_;
BuildState build_state_;
#endif
#if BUILDFLAG(IS_ANDROID)
std::unique_ptr<base::android::ApplicationStatusListener> app_state_listener_;
#endif
std::unique_ptr<GlobalFeatures> features_;
// Observes application-wide events and logs them to breadcrumbs. Null if
// breadcrumbs logging is disabled.
std::unique_ptr<breadcrumbs::ApplicationBreadcrumbsLogger>
application_breadcrumbs_logger_;
std::unique_ptr<os_crypt_async::OSCryptAsync> os_crypt_async_;
std::optional<std::pair<size_t, std::unique_ptr<os_crypt_async::KeyProvider>>>
additional_provider_for_test_;
// Do not add new members to this class. Instead use GlobalFeatures. See
// browser_process.h file level comments for more details.
SEQUENCE_CHECKER(sequence_checker_);
};
#endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_
|