Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(57)

Unified Diff: extensions/common/extension.h

Issue 98463005: Enable/disable extensions upon changes in blacklist. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « extensions/browser/extension_prefs.cc ('k') | extensions/extensions.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/common/extension.h
diff --git a/extensions/common/extension.h b/extensions/common/extension.h
index fb2cf4c429cea6e5a7793ede64a8b1ddd478d666..ead3dd0fb2d69aefceb930abf41d53811722b1b7 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 {
« no previous file with comments | « extensions/browser/extension_prefs.cc ('k') | extensions/extensions.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698