| Index: chrome/browser/extensions/extension_service.h
|
| diff --git a/chrome/browser/extensions/extension_service.h b/chrome/browser/extensions/extension_service.h
|
| index 0a2abc3fb65692fc29daf790b3b6765b24ae04e2..c14366e36830ea21d95e81f59c6b860406e4eaf2 100644
|
| --- a/chrome/browser/extensions/extension_service.h
|
| +++ b/chrome/browser/extensions/extension_service.h
|
| @@ -211,6 +211,16 @@ class ExtensionService
|
| // initiative.
|
| const ExtensionSet* GetWipedOutExtensions() const;
|
|
|
| + // Notifies the extension event routers that are interested in knowing when
|
| + // the event listeners are added.
|
| + void NotifyExtensionEventRoutersOnListenerAdded(
|
| + const std::string& event_name);
|
| +
|
| + // Notifies the extension event routers that are interested in knowing when
|
| + // the event listeners are removed.
|
| + void NotifyExtensionEventRoutersOnListenerRemoved(
|
| + const std::string& event_name);
|
| +
|
| // Gets the object managing the set of pending extensions.
|
| virtual extensions::PendingExtensionManager*
|
| pending_extension_manager() OVERRIDE;
|
|
|