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 extension APIs implemented under src/extensions. | 5 // This features file defines extension APIs 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 // Note that specifying "web_page", "blessed_web_page", or "all" as a context | 9 // Note that specifying "web_page", "blessed_web_page", or "all" as a context |
10 // type will require manually updating chrome/renderer/resources/dispatcher.cc. | 10 // type will require manually updating chrome/renderer/resources/dispatcher.cc. |
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
203 "extension_types": ["extension"], | 203 "extension_types": ["extension"], |
204 "location": "component" | 204 "location": "component" |
205 }, | 205 }, |
206 "usb": { | 206 "usb": { |
207 "dependencies": ["permission:usb"], | 207 "dependencies": ["permission:usb"], |
208 "contexts": ["blessed_extension"] | 208 "contexts": ["blessed_extension"] |
209 }, | 209 }, |
210 "usbPrivate": { | 210 "usbPrivate": { |
211 "channel": "dev", | 211 "channel": "dev", |
212 "contexts": ["webui"] | 212 "contexts": ["webui"] |
213 } | 213 }, |
| 214 "webViewExperimentalInternal": [{ |
| 215 "internal": true, |
| 216 "channel": "dev", |
| 217 "contexts": ["blessed_extension"], |
| 218 "dependencies": ["permission:webview"] |
| 219 }, |
| 220 { |
| 221 "internal": true, |
| 222 "channel": "stable", |
| 223 "contexts": ["blessed_extension"], |
| 224 "dependencies": ["permission:webview"], |
| 225 "whitelist": [ |
| 226 "8C3741E3AF0B93B6E8E0DDD499BB0B74839EA578", |
| 227 "E703483CEF33DEC18B4B6DD84B5C776FB9182BDB", |
| 228 "1A26E32DE447A17CBE5E9750CDBA78F58539B39C", |
| 229 "59048028102D7B4C681DBC7BC6CD980C3DC66DA3" |
| 230 ] |
| 231 }], |
| 232 "webViewInternal": [{ |
| 233 "internal": true, |
| 234 "dependencies": ["permission:webview"], |
| 235 "contexts": ["blessed_extension"] |
| 236 }, { |
| 237 // Component extensions can use the webViewInternal API from iframes. |
| 238 "location": "component", |
| 239 "internal": true, |
| 240 "dependencies": ["permission:webview"], |
| 241 "contexts": ["unblessed_extension"] |
| 242 }] |
214 } | 243 } |
OLD | NEW |