| 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 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 "contexts": ["blessed_extension"] | 195 "contexts": ["blessed_extension"] |
| 196 }, | 196 }, |
| 197 "mojoPrivate": { | 197 "mojoPrivate": { |
| 198 "contexts": ["blessed_extension"], | 198 "contexts": ["blessed_extension"], |
| 199 "channel": "stable", | 199 "channel": "stable", |
| 200 "extension_types": ["platform_app", "extension"], | 200 "extension_types": ["platform_app", "extension"], |
| 201 "whitelist": [ | 201 "whitelist": [ |
| 202 "63ED55E43214C211F82122ED56407FF1A807F2A3" // http://crbug.com/448569 | 202 "63ED55E43214C211F82122ED56407FF1A807F2A3" // http://crbug.com/448569 |
| 203 ] | 203 ] |
| 204 }, | 204 }, |
| 205 "networkingPrivate": { | 205 "networkingPrivate": [{ |
| 206 "dependencies": ["permission:networkingPrivate"], | 206 "dependencies": ["permission:networkingPrivate"], |
| 207 "contexts": ["blessed_extension"] | 207 "contexts": ["blessed_extension"] |
| 208 }, | 208 }, { |
| 209 "channel": "stable", |
| 210 "contexts": ["webui"], |
| 211 "matches": [ |
| 212 "chrome://network/*" |
| 213 ] |
| 214 }], |
| 209 "power": { | 215 "power": { |
| 210 "dependencies": ["permission:power"], | 216 "dependencies": ["permission:power"], |
| 211 "contexts": ["blessed_extension"] | 217 "contexts": ["blessed_extension"] |
| 212 }, | 218 }, |
| 213 "printerProvider": { | 219 "printerProvider": { |
| 214 "dependencies": ["permission:printerProvider"], | 220 "dependencies": ["permission:printerProvider"], |
| 215 "contexts": ["blessed_extension"] | 221 "contexts": ["blessed_extension"] |
| 216 }, | 222 }, |
| 217 "printerProviderInternal": { | 223 "printerProviderInternal": { |
| 218 "internal": true, | 224 "internal": true, |
| (...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 428 }], | 434 }], |
| 429 "webViewRequest": [{ | 435 "webViewRequest": [{ |
| 430 "dependencies": ["permission:webview"], | 436 "dependencies": ["permission:webview"], |
| 431 "contexts": ["blessed_extension"] | 437 "contexts": ["blessed_extension"] |
| 432 }, { | 438 }, { |
| 433 "channel": "stable", | 439 "channel": "stable", |
| 434 "contexts": ["webui"], | 440 "contexts": ["webui"], |
| 435 "matches": ["chrome://chrome-signin/*", "chrome://oobe/*"] | 441 "matches": ["chrome://chrome-signin/*", "chrome://oobe/*"] |
| 436 }] | 442 }] |
| 437 } | 443 } |
| OLD | NEW |