| Index: chrome/browser/extensions/extension_service.h
|
| diff --git a/chrome/browser/extensions/extension_service.h b/chrome/browser/extensions/extension_service.h
|
| index 35f97bd550b450921a3f3490207b1f4a02eadde3..40ef77cb4c29df3350e6ce3cb2010c7e71911e72 100644
|
| --- a/chrome/browser/extensions/extension_service.h
|
| +++ b/chrome/browser/extensions/extension_service.h
|
| @@ -267,9 +267,6 @@ class ExtensionService
|
| // Initialize and start all installed extensions.
|
| void Init();
|
|
|
| - // Start up the extension event routers.
|
| - void InitEventRouters();
|
| -
|
| // Called when the associated Profile is going to be destroyed.
|
| void Shutdown();
|
|
|
| @@ -554,10 +551,6 @@ class ExtensionService
|
|
|
| extensions::MenuManager* menu_manager() { return &menu_manager_; }
|
|
|
| - extensions::BrowserEventRouter* browser_event_router() {
|
| - return browser_event_router_.get();
|
| - }
|
| -
|
| // Notify the frontend that there was an error loading an extension.
|
| // This method is public because UnpackedInstaller and InstalledLoader
|
| // can post to here.
|
| @@ -912,13 +905,6 @@ class ExtensionService
|
| // Keeps track of menu items added by extensions.
|
| extensions::MenuManager menu_manager_;
|
|
|
| - // Flag to make sure event routers are only initialized once.
|
| - bool event_routers_initialized_;
|
| -
|
| - // TODO(yoz): None of these should be owned by ExtensionService.
|
| - // crbug.com/159265
|
| - scoped_ptr<extensions::BrowserEventRouter> browser_event_router_;
|
| -
|
| // A collection of external extension providers. Each provider reads
|
| // a source of external extension information. Examples include the
|
| // windows registry and external_extensions.json.
|
|
|