| 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 { | 8 { |
| 9 "app": { | 9 "app": { |
| 10 "channel": "stable", | 10 "channel": "stable", |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 }, | 73 }, |
| 74 "chrome_url_overrides": { | 74 "chrome_url_overrides": { |
| 75 "channel": "stable", | 75 "channel": "stable", |
| 76 "extension_types": ["extension", "legacy_packaged_app"] | 76 "extension_types": ["extension", "legacy_packaged_app"] |
| 77 }, | 77 }, |
| 78 "commands": { | 78 "commands": { |
| 79 "channel": "stable", | 79 "channel": "stable", |
| 80 "extension_types": ["extension"], | 80 "extension_types": ["extension"], |
| 81 "min_manifest_version": 2 | 81 "min_manifest_version": 2 |
| 82 }, | 82 }, |
| 83 "commands.global": { |
| 84 "channel": "dev", |
| 85 "extension_types": ["extension"], |
| 86 "min_manifest_version": 2 |
| 87 }, |
| 83 "content_pack": { | 88 "content_pack": { |
| 84 "channel": "dev", | 89 "channel": "dev", |
| 85 "extension_types": ["extension"] | 90 "extension_types": ["extension"] |
| 86 }, | 91 }, |
| 87 "content_security_policy": { | 92 "content_security_policy": { |
| 88 "channel": "stable", | 93 "channel": "stable", |
| 89 // Platform apps have a restricted content security policy that cannot be | 94 // Platform apps have a restricted content security policy that cannot be |
| 90 // overriden (except for a whitelist of exceptions, see the | 95 // overriden (except for a whitelist of exceptions, see the |
| 91 // app.content_security_policy whitelist). | 96 // app.content_security_policy whitelist). |
| 92 "extension_types": ["extension", "legacy_packaged_app"] | 97 "extension_types": ["extension", "legacy_packaged_app"] |
| (...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 385 "extension_types": [ | 390 "extension_types": [ |
| 386 "extension", "legacy_packaged_app", "hosted_app" | 391 "extension", "legacy_packaged_app", "hosted_app" |
| 387 ] | 392 ] |
| 388 }, | 393 }, |
| 389 "webview": { | 394 "webview": { |
| 390 "channel": "dev", | 395 "channel": "dev", |
| 391 "extension_types": ["platform_app"], | 396 "extension_types": ["platform_app"], |
| 392 "min_manifest_version": 2 | 397 "min_manifest_version": 2 |
| 393 } | 398 } |
| 394 } | 399 } |
| OLD | NEW |