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