| Index: chrome/browser/browser_process_impl.h
|
| diff --git a/chrome/browser/browser_process_impl.h b/chrome/browser/browser_process_impl.h
|
| index a23775994ec269f874bcc08a2ba1f96fde974f54..b6a4d2f1e17d54984a556490560648312b01f457 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();
|
| @@ -244,6 +246,9 @@ class BrowserProcessImpl : public BrowserProcess,
|
|
|
| scoped_ptr<StatusTray> status_tray_;
|
|
|
| + bool created_notification_bridge_;
|
| + scoped_ptr<NotificationBridge> notification_bridge_;
|
| +
|
| #if BUILDFLAG(ENABLE_BACKGROUND)
|
| scoped_ptr<BackgroundModeManager> background_mode_manager_;
|
| #endif
|
|
|