| 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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 "whitelist": [ | 104 "whitelist": [ |
| 105 "CB2E4E7174A398FCB3AFA6840500C2E1D22DA7B2", // Bookmark Manager | 105 "CB2E4E7174A398FCB3AFA6840500C2E1D22DA7B2", // Bookmark Manager |
| 106 "D5736E4B5CF695CB93A2FB57E4FDC6E5AFAB6FE2", // http://crbug.com/312900 | 106 "D5736E4B5CF695CB93A2FB57E4FDC6E5AFAB6FE2", // http://crbug.com/312900 |
| 107 "D57DE394F36DC1C3220E7604C575D29C51A6C495" // http://crbug.com/319444 | 107 "D57DE394F36DC1C3220E7604C575D29C51A6C495" // http://crbug.com/319444 |
| 108 ] | 108 ] |
| 109 }], | 109 }], |
| 110 "chrome_url_overrides": { | 110 "chrome_url_overrides": { |
| 111 "channel": "stable", | 111 "channel": "stable", |
| 112 "extension_types": ["extension", "legacy_packaged_app"] | 112 "extension_types": ["extension", "legacy_packaged_app"] |
| 113 }, | 113 }, |
| 114 "commands": [ | 114 "commands": { |
| 115 { | 115 "channel": "stable", |
| 116 "channel": "dev", | 116 "extension_types": ["extension", "platform_app"], |
| 117 "extension_types": ["platform_app"], | 117 "min_manifest_version": 2 |
| 118 "min_manifest_version": 2 | 118 }, |
| 119 }, { | |
| 120 "channel": "stable", | |
| 121 "extension_types": ["extension"], | |
| 122 "min_manifest_version": 2 | |
| 123 } | |
| 124 ], | |
| 125 "commands.global": [ | |
| 126 { | |
| 127 "channel": "dev", | |
| 128 "extension_types": ["extension", "platform_app"], | |
| 129 "min_manifest_version": 2 | |
| 130 } | |
| 131 ], | |
| 132 "content_pack": { | 119 "content_pack": { |
| 133 "channel": "dev", | 120 "channel": "dev", |
| 134 "extension_types": ["extension"] | 121 "extension_types": ["extension"] |
| 135 }, | 122 }, |
| 136 "content_security_policy": { | 123 "content_security_policy": { |
| 137 "channel": "stable", | 124 "channel": "stable", |
| 138 // Platform apps have a restricted content security policy that cannot be | 125 // Platform apps have a restricted content security policy that cannot be |
| 139 // overriden (except for a whitelist of exceptions, see the | 126 // overriden (except for a whitelist of exceptions, see the |
| 140 // app.content_security_policy whitelist). | 127 // app.content_security_policy whitelist). |
| 141 "extension_types": ["extension", "legacy_packaged_app"] | 128 "extension_types": ["extension", "legacy_packaged_app"] |
| (...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 454 "extension_types": ["platform_app"], | 441 "extension_types": ["platform_app"], |
| 455 "location": "component" | 442 "location": "component" |
| 456 } | 443 } |
| 457 ], | 444 ], |
| 458 "webview": { | 445 "webview": { |
| 459 "channel": "stable", | 446 "channel": "stable", |
| 460 "extension_types": ["platform_app"], | 447 "extension_types": ["platform_app"], |
| 461 "min_manifest_version": 2 | 448 "min_manifest_version": 2 |
| 462 } | 449 } |
| 463 } | 450 } |
| OLD | NEW |