Chromium Code Reviews| Index: extensions/common/extension.h |
| diff --git a/extensions/common/extension.h b/extensions/common/extension.h |
| index 391c7e521a658f4dd27589fb057afa3ee00380ca..cfa6fdad519f9c118f41c55e7c2c16bfa75e81d0 100644 |
| --- a/extensions/common/extension.h |
| +++ b/extensions/common/extension.h |
| @@ -104,7 +104,8 @@ 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, |
|
Finnur
2014/11/19 10:16:26
Maybe comment:
// Doesn't meet minimum version req
binjin
2014/11/19 13:36:11
Done.
|
| + 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 |