Index: extensions/browser/extension_registry_observer.h |
diff --git a/extensions/browser/extension_registry_observer.h b/extensions/browser/extension_registry_observer.h |
index 5880add25e63307af4691dae2e4bc98bdbcd7b99..31d6ad88e1d388a846cfc2d61b7ef01598bfde08 100644 |
--- a/extensions/browser/extension_registry_observer.h |
+++ b/extensions/browser/extension_registry_observer.h |
@@ -33,6 +33,13 @@ class ExtensionRegistryObserver { |
virtual void OnExtensionUnloaded(content::BrowserContext* browser_context, |
const Extension* extension, |
UnloadedExtensionInfo::Reason reason) {} |
+ |
+ // Called after an extension is installed. The extension will be in exactly |
+ // one of the ExtensionRegistry sets. |
not at google - send to devlin
2014/05/16 13:49:03
This comment which I asked you to write is actuall
limasdf
2014/05/16 20:39:14
Yep, ExtensionService send notification prior to a
not at google - send to devlin
2014/05/16 23:03:35
yes exactly. I expect at least one person has been
|
+ virtual void OnExtensionInstalled(content::BrowserContext* browser_context, |
+ const Extension* extension, |
+ bool is_update, |
+ const std::string& old_name) {} |
}; |
} // namespace extensions |