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 |