summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/extension_prefs.h
diff options
context:
space:
mode:
authorfinnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-25 17:53:15 +0000
committerfinnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-25 17:53:15 +0000
commit27b985db86e682c821f13ec37b52a6c69aa69fbb (patch)
treeaf9ed515ccc19ea7b9682afbe6de7d982e12d4c8 /chrome/browser/extensions/extension_prefs.h
parent8380c0910bfff5ee0af6b37536cd815023d055ef (diff)
downloadchromium_src-27b985db86e682c821f13ec37b52a6c69aa69fbb.zip
chromium_src-27b985db86e682c821f13ec37b52a6c69aa69fbb.tar.gz
chromium_src-27b985db86e682c821f13ec37b52a6c69aa69fbb.tar.bz2
The Provider for External Extensions no longer uses
the prefs file, but instead reads a preferences file (a json file called external_extensions.json). This file specifies what external extensions we installed (shipped with Chrome) and the extension system takes care of installing them. Having this in a separate file makes the upgrade scenario easier, since we can during upgrade simply blow away this file and replace it (and not have to worry about merging/loosing user specified data). The extension system will read the file, and figure out whether any extension needs to be upgraded based on the information provided. Now, all external providers fetch data on the file thread instead of reading and copying preferences on the UI thread and posting them to the file thread. BUG=http://crbug.com/14201 TEST=Covered by unit test. Review URL: http://codereview.chromium.org/144018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19264 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/extensions/extension_prefs.h')
-rw-r--r--chrome/browser/extensions/extension_prefs.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/browser/extensions/extension_prefs.h b/chrome/browser/extensions/extension_prefs.h
index a6e7ec4..be769a2 100644
--- a/chrome/browser/extensions/extension_prefs.h
+++ b/chrome/browser/extensions/extension_prefs.h
@@ -40,7 +40,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 Extension* extension,
+ bool external_uninstall);
private:
// Sets the pref |key| for extension |id| to |value|.