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 }, { | |
469 "internal": true, | |
Fady Samuel
2016/01/20 21:50:22
Drive by: I think we turn on experimental features
wjmaclean
2016/01/20 21:58:13
Done.
I'm happy enough to turn this off. Is there
| |
470 "channel": "dev", | |
471 "contexts": ["webui"], | |
472 "matches": [ | |
473 "chrome://chrome-signin/*", | |
474 "chrome://media-router/*", | |
475 "chrome://oobe/*" | |
476 ] | |
477 }], | |
463 "webViewRequest": [{ | 478 "webViewRequest": [{ |
464 "dependencies": ["permission:webview"], | 479 "dependencies": ["permission:webview"], |
465 "contexts": ["blessed_extension"] | 480 "contexts": ["blessed_extension"] |
466 }, { | 481 }, { |
467 "channel": "stable", | 482 "channel": "stable", |
468 "contexts": ["webui"], | 483 "contexts": ["webui"], |
469 "matches": [ | 484 "matches": [ |
470 "chrome://chrome-signin/*", | 485 "chrome://chrome-signin/*", |
471 "chrome://media-router/*", | 486 "chrome://media-router/*", |
472 "chrome://oobe/*" | 487 "chrome://oobe/*" |
473 ] | 488 ] |
474 }] | 489 }] |
475 } | 490 } |
OLD | NEW |