| 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 481 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 492 }, { | 492 }, { |
| 493 "internal": true, | 493 "internal": true, |
| 494 "channel": "dev", | 494 "channel": "dev", |
| 495 "contexts": ["webui"], | 495 "contexts": ["webui"], |
| 496 "matches": [ | 496 "matches": [ |
| 497 "chrome://chrome-signin/*", | 497 "chrome://chrome-signin/*", |
| 498 "chrome://media-router/*", | 498 "chrome://media-router/*", |
| 499 "chrome://oobe/*" | 499 "chrome://oobe/*" |
| 500 ] | 500 ] |
| 501 }], | 501 }], |
| 502 "webViewExperimentalInternal": [{ | |
| 503 "internal": true, | |
| 504 "channel": "dev", | |
| 505 "dependencies": ["permission:webview"], | |
| 506 "contexts": ["blessed_extension"] | |
| 507 }], | |
| 508 "webViewRequest": [{ | 502 "webViewRequest": [{ |
| 509 "dependencies": ["permission:webview"], | 503 "dependencies": ["permission:webview"], |
| 510 "contexts": ["blessed_extension"] | 504 "contexts": ["blessed_extension"] |
| 511 }, { | 505 }, { |
| 512 "channel": "stable", | 506 "channel": "stable", |
| 513 "contexts": ["webui"], | 507 "contexts": ["webui"], |
| 514 "matches": [ | 508 "matches": [ |
| 515 "chrome://chrome-signin/*", | 509 "chrome://chrome-signin/*", |
| 516 "chrome://media-router/*", | 510 "chrome://media-router/*", |
| 517 "chrome://oobe/*" | 511 "chrome://oobe/*" |
| 518 ] | 512 ] |
| 519 }] | 513 }] |
| 520 } | 514 } |
| OLD | NEW |