| 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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 "channel": "canary", | 120 "channel": "canary", |
| 121 "extension_types": ["extension"] | 121 "extension_types": ["extension"] |
| 122 }], | 122 }], |
| 123 "content_security_policy": { | 123 "content_security_policy": { |
| 124 "channel": "stable", | 124 "channel": "stable", |
| 125 // Platform apps have a restricted content security policy that cannot be | 125 // Platform apps have a restricted content security policy that cannot be |
| 126 // overriden (except for a whitelist of exceptions, see the | 126 // overriden (except for a whitelist of exceptions, see the |
| 127 // app.content_security_policy whitelist). | 127 // app.content_security_policy whitelist). |
| 128 "extension_types": ["extension", "legacy_packaged_app"] | 128 "extension_types": ["extension", "legacy_packaged_app"] |
| 129 }, | 129 }, |
| 130 "copresence" : { | |
| 131 "channel": "stable", | |
| 132 "extension_types": "all" | |
| 133 }, | |
| 134 "current_locale": { | 130 "current_locale": { |
| 135 "channel": "stable", | 131 "channel": "stable", |
| 136 "extension_types": "all" | 132 "extension_types": "all" |
| 137 }, | 133 }, |
| 138 "default_locale": { | 134 "default_locale": { |
| 139 "channel": "stable", | 135 "channel": "stable", |
| 140 "extension_types": "all" | 136 "extension_types": "all" |
| 141 }, | 137 }, |
| 142 "description": { | 138 "description": { |
| 143 "channel": "stable", | 139 "channel": "stable", |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 329 "extension_types": ["platform_app"], | 325 "extension_types": ["platform_app"], |
| 330 "location": "component" | 326 "location": "component" |
| 331 } | 327 } |
| 332 ], | 328 ], |
| 333 "webview": { | 329 "webview": { |
| 334 "channel": "stable", | 330 "channel": "stable", |
| 335 "extension_types": ["platform_app"], | 331 "extension_types": ["platform_app"], |
| 336 "min_manifest_version": 2 | 332 "min_manifest_version": 2 |
| 337 } | 333 } |
| 338 } | 334 } |
| OLD | NEW |