diff options
author | finnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-05 13:11:37 +0000 |
---|---|---|
committer | finnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-05 13:11:37 +0000 |
commit | e1e2da3479979769535e1025bcfe22f973cb2b5e (patch) | |
tree | cfd8e19ec8acc3cd02600fb15a4cd5753d9678ea /extensions/common/extension.h | |
parent | 9686f81c6e638ddcab2d3f0af1ff0c38b0a6f4e4 (diff) | |
download | chromium_src-e1e2da3479979769535e1025bcfe22f973cb2b5e.zip chromium_src-e1e2da3479979769535e1025bcfe22f973cb2b5e.tar.gz chromium_src-e1e2da3479979769535e1025bcfe22f973cb2b5e.tar.bz2 |
Add a note to chrome://extensions to explain when an extension has been disabled due to corruption.
BUG=369466
R=asargent@chromium.org, bauerb@chromium.org
Review URL: https://codereview.chromium.org/265563004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268158 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'extensions/common/extension.h')
-rw-r--r-- | extensions/common/extension.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/extensions/common/extension.h b/extensions/common/extension.h index 3354fa6..10df63c 100644 --- a/extensions/common/extension.h +++ b/extensions/common/extension.h @@ -99,7 +99,8 @@ class Extension : public base::RefCountedThreadSafe<Extension> { DISABLE_KNOWN_DISABLED = 1 << 7, DISABLE_NOT_VERIFIED = 1 << 8, // Disabled because we could not verify // the install. - DISABLE_GREYLIST = 1 << 9 + DISABLE_GREYLIST = 1 << 9, + DISABLE_CORRUPTED = 1 << 10, }; enum InstallType { |