diff options
Diffstat (limited to 'chrome/browser/extensions/extension_prefs.h')
-rw-r--r-- | chrome/browser/extensions/extension_prefs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/extensions/extension_prefs.h b/chrome/browser/extensions/extension_prefs.h index 66faf77..e6de376 100644 --- a/chrome/browser/extensions/extension_prefs.h +++ b/chrome/browser/extensions/extension_prefs.h @@ -50,7 +50,8 @@ class ExtensionPrefs { void OnExtensionInstalled(Extension* extension); // Called when an extension is uninstalled, so that prefs get cleaned up. - void OnExtensionUninstalled(const Extension* extension, + void OnExtensionUninstalled(const std::string& extension_id, + const Extension::Location& location, bool external_uninstall); // Returns the state (enabled/disabled) of the given extension. @@ -162,4 +163,3 @@ class ExtensionPrefs { }; #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_PREFS_H_ - |