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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 }, | 120 }, |
121 "declarativeWebRequest": { | 121 "declarativeWebRequest": { |
122 "dependencies": ["permission:declarativeWebRequest"], | 122 "dependencies": ["permission:declarativeWebRequest"], |
123 "contexts": ["blessed_extension"] | 123 "contexts": ["blessed_extension"] |
124 }, | 124 }, |
125 "diagnostics": { | 125 "diagnostics": { |
126 "dependencies": ["permission:diagnostics"], | 126 "dependencies": ["permission:diagnostics"], |
127 "extension_types": ["platform_app"], | 127 "extension_types": ["platform_app"], |
128 "contexts": ["blessed_extension"] | 128 "contexts": ["blessed_extension"] |
129 }, | 129 }, |
| 130 "displaySource": { |
| 131 "dependencies": ["permission:displaySource"], |
| 132 "contexts": ["blessed_extension"] |
| 133 }, |
130 "dns": { | 134 "dns": { |
131 "dependencies": ["permission:dns"], | 135 "dependencies": ["permission:dns"], |
132 "contexts": ["blessed_extension"] | 136 "contexts": ["blessed_extension"] |
133 }, | 137 }, |
134 "documentScan": { | 138 "documentScan": { |
135 "dependencies": ["permission:documentScan"], | 139 "dependencies": ["permission:documentScan"], |
136 "contexts": ["blessed_extension"] | 140 "contexts": ["blessed_extension"] |
137 }, | 141 }, |
138 // This is not a real API, only here for documentation purposes. | 142 // This is not a real API, only here for documentation purposes. |
139 // See http://crbug.com/275944 for background. | 143 // See http://crbug.com/275944 for background. |
(...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
460 }, { | 464 }, { |
461 "channel": "stable", | 465 "channel": "stable", |
462 "contexts": ["webui"], | 466 "contexts": ["webui"], |
463 "matches": [ | 467 "matches": [ |
464 "chrome://chrome-signin/*", | 468 "chrome://chrome-signin/*", |
465 "chrome://media-router/*", | 469 "chrome://media-router/*", |
466 "chrome://oobe/*" | 470 "chrome://oobe/*" |
467 ] | 471 ] |
468 }] | 472 }] |
469 } | 473 } |
OLD | NEW |