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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
192 "contexts": ["blessed_extension"] | 192 "contexts": ["blessed_extension"] |
193 }, | 193 }, |
194 "mojoPrivate": { | 194 "mojoPrivate": { |
195 "contexts": ["blessed_extension"], | 195 "contexts": ["blessed_extension"], |
196 "channel": "stable", | 196 "channel": "stable", |
197 "extension_types": ["platform_app", "extension"], | 197 "extension_types": ["platform_app", "extension"], |
198 "whitelist": [ | 198 "whitelist": [ |
199 "63ED55E43214C211F82122ED56407FF1A807F2A3" // http://crbug.com/448569 | 199 "63ED55E43214C211F82122ED56407FF1A807F2A3" // http://crbug.com/448569 |
200 ] | 200 ] |
201 }, | 201 }, |
| 202 "networking.config": { |
| 203 "dependencies": ["permission:networking.config"], |
| 204 "contexts": ["blessed_extension"] |
| 205 }, |
202 "networkingPrivate": { | 206 "networkingPrivate": { |
203 "dependencies": ["permission:networkingPrivate"], | 207 "dependencies": ["permission:networkingPrivate"], |
204 "contexts": ["blessed_extension"] | 208 "contexts": ["blessed_extension"] |
205 }, | 209 }, |
206 "power": { | 210 "power": { |
207 "dependencies": ["permission:power"], | 211 "dependencies": ["permission:power"], |
208 "contexts": ["blessed_extension"] | 212 "contexts": ["blessed_extension"] |
209 }, | 213 }, |
210 "printerProvider": { | 214 "printerProvider": { |
211 "dependencies": ["permission:printerProvider"], | 215 "dependencies": ["permission:printerProvider"], |
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
425 }], | 429 }], |
426 "webViewRequest": [{ | 430 "webViewRequest": [{ |
427 "dependencies": ["permission:webview"], | 431 "dependencies": ["permission:webview"], |
428 "contexts": ["blessed_extension"] | 432 "contexts": ["blessed_extension"] |
429 }, { | 433 }, { |
430 "channel": "stable", | 434 "channel": "stable", |
431 "contexts": ["webui"], | 435 "contexts": ["webui"], |
432 "matches": ["chrome://chrome-signin/*", "chrome://oobe/*"] | 436 "matches": ["chrome://chrome-signin/*", "chrome://oobe/*"] |
433 }] | 437 }] |
434 } | 438 } |
OLD | NEW |