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

Unified Diff: extensions/common/extension.h

Issue 706623004: Add minimum version to extension management (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ext-update-url
Patch Set: rebase Created 6 years, 1 month 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 | « components/policy/resources/policy_templates.json ('k') | extensions/extensions_strings.grd » ('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 d8453329f5627fb51064a4053042979f2bcdcb15..1d1ab1a56eb1924a39cb43f12eb08afee2340cea 100644
--- a/extensions/common/extension.h
+++ b/extensions/common/extension.h
@@ -105,7 +105,9 @@ class Extension : public base::RefCountedThreadSafe<Extension> {
// disabled to prevent activity.
DISABLE_EXTERNAL_EXTENSION = 1 << 13, // External extensions might be
// disabled for user prompting.
- DISABLE_REASON_LAST = 1 << 14, // This should always be the last value
+ DISABLE_UPDATE_REQUIRED_BY_POLICY = 1 << 14, // Doesn't meet minimum
+ // version requirement.
+ DISABLE_REASON_LAST = 1 << 15, // This should always be the last value
};
// A base class for parsed manifest data that APIs want to store on
« no previous file with comments | « components/policy/resources/policy_templates.json ('k') | extensions/extensions_strings.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698