| 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 "webViewRequest": [{ | 463 "webViewRequest": [{ |
| 470 "dependencies": ["permission:webview"], | 464 "dependencies": ["permission:webview"], |
| 471 "contexts": ["blessed_extension"] | 465 "contexts": ["blessed_extension"] |
| 472 }, { | 466 }, { |
| 473 "channel": "stable", | 467 "channel": "stable", |
| 474 "contexts": ["webui"], | 468 "contexts": ["webui"], |
| 475 "matches": [ | 469 "matches": [ |
| 476 "chrome://chrome-signin/*", | 470 "chrome://chrome-signin/*", |
| 477 "chrome://media-router/*", | 471 "chrome://media-router/*", |
| 478 "chrome://oobe/*" | 472 "chrome://oobe/*" |
| 479 ] | 473 ] |
| 480 }] | 474 }] |
| 481 } | 475 } |
| OLD | NEW |