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 442 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
453 }, { | 453 }, { |
454 "internal": true, | 454 "internal": true, |
455 "channel": "dev", | 455 "channel": "dev", |
456 "contexts": ["webui"], | 456 "contexts": ["webui"], |
457 "matches": [ | 457 "matches": [ |
458 "chrome://chrome-signin/*", | 458 "chrome://chrome-signin/*", |
459 "chrome://media-router/*", | 459 "chrome://media-router/*", |
460 "chrome://oobe/*" | 460 "chrome://oobe/*" |
461 ] | 461 ] |
462 }], | 462 }], |
| 463 "webViewExperimentalInternal": [{ |
| 464 "internal": true, |
| 465 "channel": "dev", |
| 466 "dependencies": ["permission:webview"], |
| 467 "contexts": ["blessed_extension"] |
| 468 }], |
463 "webViewRequest": [{ | 469 "webViewRequest": [{ |
464 "dependencies": ["permission:webview"], | 470 "dependencies": ["permission:webview"], |
465 "contexts": ["blessed_extension"] | 471 "contexts": ["blessed_extension"] |
466 }, { | 472 }, { |
467 "channel": "stable", | 473 "channel": "stable", |
468 "contexts": ["webui"], | 474 "contexts": ["webui"], |
469 "matches": [ | 475 "matches": [ |
470 "chrome://chrome-signin/*", | 476 "chrome://chrome-signin/*", |
471 "chrome://media-router/*", | 477 "chrome://media-router/*", |
472 "chrome://oobe/*" | 478 "chrome://oobe/*" |
473 ] | 479 ] |
474 }] | 480 }] |
475 } | 481 } |
OLD | NEW |