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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
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"], |
not at google - send to devlin
2015/01/29 23:53:17
oh, this is a problem here. You can't depend on th
| |
207 "contexts": ["blessed_extension"] | 207 "contexts": ["blessed_extension", "webui"], |
208 "matches": [ | |
209 "chrome://network/*" | |
210 ] | |
208 }, | 211 }, |
209 "power": { | 212 "power": { |
210 "dependencies": ["permission:power"], | 213 "dependencies": ["permission:power"], |
211 "contexts": ["blessed_extension"] | 214 "contexts": ["blessed_extension"] |
212 }, | 215 }, |
213 "printerProvider": { | 216 "printerProvider": { |
214 "dependencies": ["permission:printerProvider"], | 217 "dependencies": ["permission:printerProvider"], |
215 "contexts": ["blessed_extension"] | 218 "contexts": ["blessed_extension"] |
216 }, | 219 }, |
217 "printerProviderInternal": { | 220 "printerProviderInternal": { |
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
428 }], | 431 }], |
429 "webViewRequest": [{ | 432 "webViewRequest": [{ |
430 "dependencies": ["permission:webview"], | 433 "dependencies": ["permission:webview"], |
431 "contexts": ["blessed_extension"] | 434 "contexts": ["blessed_extension"] |
432 }, { | 435 }, { |
433 "channel": "stable", | 436 "channel": "stable", |
434 "contexts": ["webui"], | 437 "contexts": ["webui"], |
435 "matches": ["chrome://chrome-signin/*", "chrome://oobe/*"] | 438 "matches": ["chrome://chrome-signin/*", "chrome://oobe/*"] |
436 }] | 439 }] |
437 } | 440 } |
OLD | NEW |