| Index: chrome/browser/browser_process_impl.h
|
| diff --git a/chrome/browser/browser_process_impl.h b/chrome/browser/browser_process_impl.h
|
| index e4a287d6ef024fc203b22ec45a6655295b3ba803..400ef481e5f9e2f18fb4513b9b93d87eb72c928f 100644
|
| --- a/chrome/browser/browser_process_impl.h
|
| +++ b/chrome/browser/browser_process_impl.h
|
| @@ -107,6 +107,7 @@ class BrowserProcessImpl : public BrowserProcess,
|
| BrowserProcessPlatformPart* platform_part() override;
|
| extensions::EventRouterForwarder* extension_event_router_forwarder() override;
|
| NotificationUIManager* notification_ui_manager() override;
|
| + NotificationBridge* notification_bridge() override;
|
| message_center::MessageCenter* message_center() override;
|
| policy::BrowserPolicyConnector* browser_policy_connector() override;
|
| policy::PolicyService* policy_service() override;
|
| @@ -169,6 +170,7 @@ class BrowserProcessImpl : public BrowserProcess,
|
| void CreateViewedPageTracker();
|
| void CreateIconManager();
|
| void CreateIntranetRedirectDetector();
|
| + void CreateNotificationBridge();
|
| void CreateNotificationUIManager();
|
| void CreateStatusTrayManager();
|
| void CreatePrintPreviewDialogController();
|
| @@ -246,6 +248,9 @@ class BrowserProcessImpl : public BrowserProcess,
|
|
|
| std::unique_ptr<StatusTray> status_tray_;
|
|
|
| + bool created_notification_bridge_;
|
| + std::unique_ptr<NotificationBridge> notification_bridge_;
|
| +
|
| #if BUILDFLAG(ENABLE_BACKGROUND)
|
| std::unique_ptr<BackgroundModeManager> background_mode_manager_;
|
| #endif
|
|
|