| 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 // This features file defines permissions for extension APIs implemented | 5 // This features file defines permissions for extension APIs implemented |
| 6 // under src/chrome. | 6 // under src/chrome. |
| 7 // See extensions/common/features/* to understand this file, in particular | 7 // See extensions/common/features/* to understand this file, in particular |
| 8 // feature.h, simple_feature.h, and base_feature_provider.h. | 8 // feature.h, simple_feature.h, and base_feature_provider.h. |
| 9 | 9 |
| 10 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash: | 10 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash: |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 }, | 145 }, |
| 146 "bookmarks": { | 146 "bookmarks": { |
| 147 "channel": "stable", | 147 "channel": "stable", |
| 148 "extension_types": ["extension", "legacy_packaged_app"] | 148 "extension_types": ["extension", "legacy_packaged_app"] |
| 149 }, | 149 }, |
| 150 "brailleDisplayPrivate": { | 150 "brailleDisplayPrivate": { |
| 151 "channel": "stable", | 151 "channel": "stable", |
| 152 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], | 152 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], |
| 153 "location": "component" | 153 "location": "component" |
| 154 }, | 154 }, |
| 155 "browser": { |
| 156 "channel": "dev", |
| 157 "extension_types": ["platform_app"] |
| 158 }, |
| 155 "browsingData": { | 159 "browsingData": { |
| 156 "channel": "stable", | 160 "channel": "stable", |
| 157 "extension_types": ["extension", "legacy_packaged_app"] | 161 "extension_types": ["extension", "legacy_packaged_app"] |
| 158 }, | 162 }, |
| 159 "cast": { | 163 "cast": { |
| 160 "channel": "stable", | 164 "channel": "stable", |
| 161 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], | 165 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], |
| 162 "whitelist": [ | 166 "whitelist": [ |
| 163 "63ED55E43214C211F82122ED56407FF1A807F2A3", // Dev | 167 "63ED55E43214C211F82122ED56407FF1A807F2A3", // Dev |
| 164 "FA01E0B81978950F2BC5A50512FD769725F57510", // Beta | 168 "FA01E0B81978950F2BC5A50512FD769725F57510", // Beta |
| (...skipping 815 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 980 // Only allowed for whitelisted extensions until all the caveats are | 984 // Only allowed for whitelisted extensions until all the caveats are |
| 981 // addressed. Tracked in crbug/285151. | 985 // addressed. Tracked in crbug/285151. |
| 982 "channel": "stable", | 986 "channel": "stable", |
| 983 "extension_types": ["extension"], | 987 "extension_types": ["extension"], |
| 984 "location": "component", | 988 "location": "component", |
| 985 "whitelist": [ | 989 "whitelist": [ |
| 986 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension | 990 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension |
| 987 ] | 991 ] |
| 988 }] | 992 }] |
| 989 } | 993 } |
| OLD | NEW |