OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // See c/c/e/features/* to understand this file, in particular feature.h, | 5 // See c/c/e/features/* to understand this file, in particular feature.h, |
6 // simple_feature.h, and base_feature_provider.h. | 6 // simple_feature.h, and base_feature_provider.h. |
7 | 7 |
8 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash: | 8 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash: |
9 // | 9 // |
10 // $ echo -n "aaaabbbbccccddddeeeeffffgggghhhh" | \ | 10 // $ echo -n "aaaabbbbccccddddeeeeffffgggghhhh" | \ |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 }, | 148 }, |
149 "bookmarks": { | 149 "bookmarks": { |
150 "channel": "stable", | 150 "channel": "stable", |
151 "extension_types": ["extension", "legacy_packaged_app"] | 151 "extension_types": ["extension", "legacy_packaged_app"] |
152 }, | 152 }, |
153 "brailleDisplayPrivate": { | 153 "brailleDisplayPrivate": { |
154 "channel": "stable", | 154 "channel": "stable", |
155 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], | 155 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], |
156 "location": "component" | 156 "location": "component" |
157 }, | 157 }, |
| 158 "browser": { |
| 159 "channel": "dev", |
| 160 "extension_types": ["platform_app"] |
| 161 }, |
158 "browsingData": { | 162 "browsingData": { |
159 "channel": "stable", | 163 "channel": "stable", |
160 "extension_types": ["extension", "legacy_packaged_app"] | 164 "extension_types": ["extension", "legacy_packaged_app"] |
161 }, | 165 }, |
162 "cast": { | 166 "cast": { |
163 "channel": "stable", | 167 "channel": "stable", |
164 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], | 168 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], |
165 "whitelist": [ | 169 "whitelist": [ |
166 "63ED55E43214C211F82122ED56407FF1A807F2A3", // Dev | 170 "63ED55E43214C211F82122ED56407FF1A807F2A3", // Dev |
167 "FA01E0B81978950F2BC5A50512FD769725F57510", // Beta | 171 "FA01E0B81978950F2BC5A50512FD769725F57510", // Beta |
(...skipping 845 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1013 // Only allowed for whitelisted extensions until all the caveats are | 1017 // Only allowed for whitelisted extensions until all the caveats are |
1014 // addressed. Tracked in crbug/285151. | 1018 // addressed. Tracked in crbug/285151. |
1015 "channel": "stable", | 1019 "channel": "stable", |
1016 "extension_types": ["extension"], | 1020 "extension_types": ["extension"], |
1017 "location": "component", | 1021 "location": "component", |
1018 "whitelist": [ | 1022 "whitelist": [ |
1019 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension | 1023 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension |
1020 ] | 1024 ] |
1021 }] | 1025 }] |
1022 } | 1026 } |
OLD | NEW |