| 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 chrome/common/extensions/api/_features.md to understand this file, as | 6 // See chrome/common/extensions/api/_features.md to understand this file, as |
| 7 // well as feature.h, simple_feature.h, and base_feature_provider.h. | 7 // well as feature.h, simple_feature.h, and base_feature_provider.h. |
| 8 | 8 |
| 9 { | 9 { |
| 10 "app": { | 10 "app": { |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 } | 166 } |
| 167 ], | 167 ], |
| 168 "key": { | 168 "key": { |
| 169 "channel": "stable", | 169 "channel": "stable", |
| 170 "extension_types": "all" | 170 "extension_types": "all" |
| 171 }, | 171 }, |
| 172 "kiosk": { | 172 "kiosk": { |
| 173 "channel": "stable", | 173 "channel": "stable", |
| 174 "extension_types": ["platform_app"] | 174 "extension_types": ["platform_app"] |
| 175 }, | 175 }, |
| 176 "kiosk.always_update": { |
| 177 "channel": "stable", |
| 178 "extension_types": ["platform_app"] |
| 179 }, |
| 176 "kiosk.required_platform_version": { | 180 "kiosk.required_platform_version": { |
| 177 "channel": "stable", | 181 "channel": "stable", |
| 178 "extension_types": ["platform_app"] | 182 "extension_types": ["platform_app"] |
| 179 }, | 183 }, |
| 180 "kiosk_enabled": { | 184 "kiosk_enabled": { |
| 181 "channel": "stable", | 185 "channel": "stable", |
| 182 "extension_types": [ | 186 "extension_types": [ |
| 183 "platform_app" | 187 "platform_app" |
| 184 ] | 188 ] |
| 185 }, | 189 }, |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 322 "extension_types": ["platform_app"], | 326 "extension_types": ["platform_app"], |
| 323 "location": "component" | 327 "location": "component" |
| 324 } | 328 } |
| 325 ], | 329 ], |
| 326 "webview": { | 330 "webview": { |
| 327 "channel": "stable", | 331 "channel": "stable", |
| 328 "extension_types": ["platform_app"], | 332 "extension_types": ["platform_app"], |
| 329 "min_manifest_version": 2 | 333 "min_manifest_version": 2 |
| 330 } | 334 } |
| 331 } | 335 } |
| OLD | NEW |