diff options
author | aa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-05 18:31:01 +0000 |
---|---|---|
committer | aa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-05 18:31:01 +0000 |
commit | 79c833b5768e45043ede28603919323bef4db6b8 (patch) | |
tree | f2bcffbb31216a026eb4b9653c61810780db797d /chrome/common | |
parent | 4e963b73e6be8d0b6676cf014bc9363863130ea6 (diff) | |
download | chromium_src-79c833b5768e45043ede28603919323bef4db6b8.zip chromium_src-79c833b5768e45043ede28603919323bef4db6b8.tar.gz chromium_src-79c833b5768e45043ede28603919323bef4db6b8.tar.bz2 |
Rename Extension::KILLBIT to EXTERNAL_EXTENSION_UNINSTALLED.
It would be good to also rename "external extension" to
something else, but this is a quick improvement.
TBR=mpcomplete@chromium.org
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80493 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/extensions/extension.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/chrome/common/extensions/extension.h b/chrome/common/extensions/extension.h index 51d9df5..d6d4173 100644 --- a/chrome/common/extensions/extension.h +++ b/chrome/common/extensions/extension.h @@ -61,8 +61,9 @@ class Extension : public base::RefCountedThreadSafe<Extension> { enum State { DISABLED = 0, ENABLED, - KILLBIT, // Don't install/upgrade (applies to external extensions only). - + // An external extension that the user uninstalled. We should not reinstall + // such extensions on startup. + EXTERNAL_EXTENSION_UNINSTALLED, NUM_STATES }; |