| 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 chrome/common/extensions/api/_features.md to understand this file, as | 6 // See chrome/common/extensions/api/_features.md to understand this file, as |
| 7 // well as feature.h, simple_feature.h, and feature_provider.h. | 7 // well as feature.h, simple_feature.h, and 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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 "clipboard.onClipboardDataChanged": { | 119 "clipboard.onClipboardDataChanged": { |
| 120 "dependencies": ["permission:clipboardRead"] | 120 "dependencies": ["permission:clipboardRead"] |
| 121 }, | 121 }, |
| 122 "clipboard.setImageData": { | 122 "clipboard.setImageData": { |
| 123 "dependencies": ["permission:clipboardWrite"] | 123 "dependencies": ["permission:clipboardWrite"] |
| 124 }, | 124 }, |
| 125 "declarativeWebRequest": { | 125 "declarativeWebRequest": { |
| 126 "dependencies": ["permission:declarativeWebRequest"], | 126 "dependencies": ["permission:declarativeWebRequest"], |
| 127 "contexts": ["blessed_extension"] | 127 "contexts": ["blessed_extension"] |
| 128 }, | 128 }, |
| 129 "declarativeNetRequest" : { |
| 130 "dependencies" : ["permission:declarativeNetRequest"], |
| 131 "contexts" : ["blessed_extension"] |
| 132 }, |
| 129 "diagnostics": { | 133 "diagnostics": { |
| 130 "dependencies": ["permission:diagnostics"], | 134 "dependencies": ["permission:diagnostics"], |
| 131 "extension_types": ["platform_app"], | 135 "extension_types": ["platform_app"], |
| 132 "contexts": ["blessed_extension"] | 136 "contexts": ["blessed_extension"] |
| 133 }, | 137 }, |
| 134 "displaySource": { | 138 "displaySource": { |
| 135 "dependencies": ["permission:displaySource"], | 139 "dependencies": ["permission:displaySource"], |
| 136 "contexts": ["blessed_extension"] | 140 "contexts": ["blessed_extension"] |
| 137 }, | 141 }, |
| 138 "dns": { | 142 "dns": { |
| (...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 538 }, { | 542 }, { |
| 539 "channel": "stable", | 543 "channel": "stable", |
| 540 "contexts": ["webui"], | 544 "contexts": ["webui"], |
| 541 "matches": [ | 545 "matches": [ |
| 542 "chrome://chrome-signin/*", | 546 "chrome://chrome-signin/*", |
| 543 "chrome://media-router/*", | 547 "chrome://media-router/*", |
| 544 "chrome://oobe/*" | 548 "chrome://oobe/*" |
| 545 ] | 549 ] |
| 546 }] | 550 }] |
| 547 } | 551 } |
| OLD | NEW |