OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 // This features file defines manifest keys implemented under src/extensions. | 5 // This features file defines manifest keys implemented under src/extensions. |
6 // See extensions/common/features/* to understand this file, in particular | 6 // See extensions/common/features/* to understand this file, in particular |
7 // feature.h, simple_feature.h, and base_feature_provider.h. | 7 // feature.h, simple_feature.h, and base_feature_provider.h. |
8 | 8 |
9 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash: | 9 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash: |
10 // | 10 // |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
175 { | 175 { |
176 "channel": "stable", | 176 "channel": "stable", |
177 "extension_types": ["platform_app"], | 177 "extension_types": ["platform_app"], |
178 "location": "component" | 178 "location": "component" |
179 } | 179 } |
180 ], | 180 ], |
181 "key": { | 181 "key": { |
182 "channel": "stable", | 182 "channel": "stable", |
183 "extension_types": "all" | 183 "extension_types": "all" |
184 }, | 184 }, |
| 185 "kiosk": { |
| 186 "channel": "dev", |
| 187 "extension_types": ["platform_app"] |
| 188 }, |
| 189 "kiosk.required_platform_version": { |
| 190 "channel": "dev", |
| 191 "extension_types": ["platform_app"] |
| 192 }, |
185 "kiosk_enabled": { | 193 "kiosk_enabled": { |
186 "channel": "stable", | 194 "channel": "stable", |
187 "extension_types": [ | 195 "extension_types": [ |
188 "platform_app" | 196 "platform_app" |
189 ] | 197 ] |
190 }, | 198 }, |
191 "kiosk_only": { | 199 "kiosk_only": { |
192 "channel": "stable", | 200 "channel": "stable", |
193 "extension_types": [ | 201 "extension_types": [ |
194 "platform_app" | 202 "platform_app" |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
323 "extension_types": ["platform_app"], | 331 "extension_types": ["platform_app"], |
324 "location": "component" | 332 "location": "component" |
325 } | 333 } |
326 ], | 334 ], |
327 "webview": { | 335 "webview": { |
328 "channel": "stable", | 336 "channel": "stable", |
329 "extension_types": ["platform_app"], | 337 "extension_types": ["platform_app"], |
330 "min_manifest_version": 2 | 338 "min_manifest_version": 2 |
331 } | 339 } |
332 } | 340 } |
OLD | NEW |