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

Unified Diff: extensions/common/extension.h

Issue 2004043002: Supervised Users Initiated Installs v2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@kid_initiated_install
Patch Set: minor Created 4 years, 7 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
Index: extensions/common/extension.h
diff --git a/extensions/common/extension.h b/extensions/common/extension.h
index 278a8c488bb30f4de4ea0ca92b198125151cb939..95805a2df1adcb2624d7344f559350f1e3d613c5 100644
--- a/extensions/common/extension.h
+++ b/extensions/common/extension.h
@@ -88,7 +88,9 @@ class Extension : public base::RefCountedThreadSafe<Extension> {
// disabled for user prompting.
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
+ DISABLE_CUSTODIAN_APPROVAL_REQUIRED = 1 << 15, // Supervised user needs
+ // approval by custodian.
+ DISABLE_REASON_LAST = 1 << 16, // This should always be the last value
};
// A base class for parsed manifest data that APIs want to store on

Powered by Google App Engine
This is Rietveld 408576698