diff options
author | benwells <benwells@chromium.org> | 2015-12-08 18:20:24 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-12-09 02:21:38 +0000 |
commit | 1dd4acd3139eece0998bc422738b4d1b41462fca (patch) | |
tree | c47ebe6a9af3c1aa9e5f5f9c6f2c898a708cb1ea /extensions/common/extension.h | |
parent | e1858d8614321b276e3588a514262f1553a3c272 (diff) | |
download | chromium_src-1dd4acd3139eece0998bc422738b4d1b41462fca.zip chromium_src-1dd4acd3139eece0998bc422738b4d1b41462fca.tar.gz chromium_src-1dd4acd3139eece0998bc422738b4d1b41462fca.tar.bz2 |
Remove all the ephemeral apps code.
BUG=517735
Review URL: https://codereview.chromium.org/1497193002
Cr-Commit-Position: refs/heads/master@{#363918}
Diffstat (limited to 'extensions/common/extension.h')
-rw-r--r-- | extensions/common/extension.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/extensions/common/extension.h b/extensions/common/extension.h index 75495fb..72c4396 100644 --- a/extensions/common/extension.h +++ b/extensions/common/extension.h @@ -102,10 +102,9 @@ class Extension : public base::RefCountedThreadSafe<Extension> { DISABLE_GREYLIST = 1 << 9, DISABLE_CORRUPTED = 1 << 10, DISABLE_REMOTE_INSTALL = 1 << 11, - DISABLE_INACTIVE_EPHEMERAL_APP = 1 << 12, // Cached ephemeral apps are - // disabled to prevent activity. - DISABLE_EXTERNAL_EXTENSION = 1 << 13, // External extensions might be - // disabled for user prompting. + // DISABLE_INACTIVE_EPHEMERAL_APP = 1 << 12, // Deprecated. + DISABLE_EXTERNAL_EXTENSION = 1 << 13, // External extensions might be + // 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 |