Index: extensions/common/extension.h |
diff --git a/extensions/common/extension.h b/extensions/common/extension.h |
index fc6579e18f596ab8dfc6037e97ac75a8c7607ed1..1898200d338cfcd49c5a529323fa9a0c9ebc6566 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 |