Chromium Code Reviews| Index: chrome/browser/extensions/install_tracker.h |
| diff --git a/chrome/browser/extensions/install_tracker.h b/chrome/browser/extensions/install_tracker.h |
| index 8342ec934a8622fdd51c90345137bcea83af8161..505962d05cefcdb58422f85e49d72d5abe056994 100644 |
| --- a/chrome/browser/extensions/install_tracker.h |
| +++ b/chrome/browser/extensions/install_tracker.h |
| @@ -53,7 +53,7 @@ class InstallTracker : public KeyedService, |
| private: |
| void OnAppsReordered(); |
| - // content::NotificationObserver. |
| + // content::NotificationObserver implementation. |
| virtual void Observe(int type, |
| const content::NotificationSource& source, |
| const content::NotificationDetails& details) OVERRIDE; |
| @@ -65,12 +65,14 @@ class InstallTracker : public KeyedService, |
| content::BrowserContext* browser_context, |
| const Extension* extension, |
| UnloadedExtensionInfo::Reason reason) OVERRIDE; |
| + virtual void OnExtensionInstalled(content::BrowserContext* browser_context, |
| + const Extension* extension, |
| + InstalledExtensionInfo info) OVERRIDE; |
|
not at google - send to devlin
2014/05/14 18:17:50
(note that this should be a const InstalledExtensi
limasdf
2014/05/16 01:02:35
(Yep. Thank you)
|
| ObserverList<InstallObserver> observers_; |
| content::NotificationRegistrar registrar_; |
| PrefChangeRegistrar pref_change_registrar_; |
| - // Listen to extension load, unloaded notifications. |
| ScopedObserver<ExtensionRegistry, ExtensionRegistryObserver> |
| extension_registry_observer_; |