diff options
author | oleg@chromium.org <oleg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-27 17:30:00 +0000 |
---|---|---|
committer | oleg@chromium.org <oleg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-27 17:30:00 +0000 |
commit | 2d19eb6eec1c27d7d177364cefd077520e4fdfb0 (patch) | |
tree | b2069f6ba52f87bc5e704d352ab7bb7c7c82efac /extensions/common/extension.h | |
parent | bc018c8aa84095a5ca0b13453f4f694a4827a95c (diff) | |
download | chromium_src-2d19eb6eec1c27d7d177364cefd077520e4fdfb0.zip chromium_src-2d19eb6eec1c27d7d177364cefd077520e4fdfb0.tar.gz chromium_src-2d19eb6eec1c27d7d177364cefd077520e4fdfb0.tar.bz2 |
Enable/disable extensions upon changes in blacklist.
BUG=267514
Review URL: https://codereview.chromium.org/98463005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@247263 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'extensions/common/extension.h')
-rw-r--r-- | extensions/common/extension.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/extensions/common/extension.h b/extensions/common/extension.h index fb2cf4c..ead3dd0 100644 --- a/extensions/common/extension.h +++ b/extensions/common/extension.h @@ -90,9 +90,9 @@ class Extension : public base::RefCountedThreadSafe<Extension> { DISABLE_UNKNOWN_FROM_SYNC = 1 << 5, DISABLE_PERMISSIONS_CONSENT = 1 << 6, // Unused - abandoned experiment. DISABLE_KNOWN_DISABLED = 1 << 7, - - // Disabled because we could not verify the install. - DISABLE_NOT_VERIFIED = 1 << 8, + DISABLE_NOT_VERIFIED = 1 << 8, // Disabled because we could not verify + // the install. + DISABLE_GREYLIST = 1 << 9 }; enum InstallType { |