diff options
author | treib@chromium.org <treib@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-16 21:41:59 +0000 |
---|---|---|
committer | treib@chromium.org <treib@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-16 21:41:59 +0000 |
commit | 6338fa3cd09f1c78be2e70690c3b2a2b7756227f (patch) | |
tree | b1296060481d8c580d94279145d659d2be283b19 /extensions/common/extension.cc | |
parent | ce9926cbd608f0e1a0d2af6f3b294925095f0793 (diff) | |
download | chromium_src-6338fa3cd09f1c78be2e70690c3b2a2b7756227f.zip chromium_src-6338fa3cd09f1c78be2e70690c3b2a2b7756227f.tar.gz chromium_src-6338fa3cd09f1c78be2e70690c3b2a2b7756227f.tar.bz2 |
Apps&Extensions for supervised users: Add Extension::WAS_INSTALLED_BY_CUSTODIAN flag and proto entry.
Currently, supervised users can not use Apps/Extensions at all. In the future, their custodian will be able to remotely install Apps/Extensions for them. This CL introduces a new extension flag and corresponding proto entry that marks these extensions, so we can allow only those in the client.
Relevant design doc section: https://docs.google.com/a/google.com/document/d/1rqahhrErR_HiZ04v-Skb_kvXeyOfnTvBPFvKwAxuf10/edit#heading=h.ptivtbjwlda5
BUG=390520
Review URL: https://codereview.chromium.org/353493002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@283522 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'extensions/common/extension.cc')
-rw-r--r-- | extensions/common/extension.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/common/extension.cc b/extensions/common/extension.cc index 8fab82b..f19ef51 100644 --- a/extensions/common/extension.cc +++ b/extensions/common/extension.cc @@ -67,7 +67,7 @@ bool ContainsReservedCharacters(const base::FilePath& path) { } // namespace -const int Extension::kInitFromValueFlagBits = 11; +const int Extension::kInitFromValueFlagBits = 12; const char Extension::kMimeType[] = "application/x-chrome-extension"; |