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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 "chrome://extensions-frame/*", | 138 "chrome://extensions-frame/*", |
139 "chrome://extensions/*", | 139 "chrome://extensions/*", |
140 "chrome://chrome-signin/*" | 140 "chrome://chrome-signin/*" |
141 ] | 141 ] |
142 } | 142 } |
143 ], | 143 ], |
144 "hid": { | 144 "hid": { |
145 "dependencies": ["permission:hid"], | 145 "dependencies": ["permission:hid"], |
146 "contexts": ["blessed_extension"] | 146 "contexts": ["blessed_extension"] |
147 }, | 147 }, |
| 148 "management": { |
| 149 "dependencies": ["permission:management"], |
| 150 "contexts": ["blessed_extension"] |
| 151 }, |
| 152 "management.getPermissionWarningsByManifest": { |
| 153 "dependencies": [], |
| 154 "channel": "stable", |
| 155 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] |
| 156 }, |
| 157 "management.getSelf": { |
| 158 "dependencies": [], |
| 159 "channel": "stable", |
| 160 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] |
| 161 }, |
| 162 "management.uninstallSelf": { |
| 163 "dependencies": [], |
| 164 "channel": "stable", |
| 165 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] |
| 166 }, |
148 "power": { | 167 "power": { |
149 "dependencies": ["permission:power"], | 168 "dependencies": ["permission:power"], |
150 "contexts": ["blessed_extension"] | 169 "contexts": ["blessed_extension"] |
151 }, | 170 }, |
152 "runtime": { | 171 "runtime": { |
153 "channel": "stable", | 172 "channel": "stable", |
154 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], | 173 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], |
155 "contexts": ["blessed_extension"] | 174 "contexts": ["blessed_extension"] |
156 }, | 175 }, |
157 "runtime.getManifest": { | 176 "runtime.getManifest": { |
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
333 }], | 352 }], |
334 "webViewRequest": [{ | 353 "webViewRequest": [{ |
335 "dependencies": ["permission:webview"], | 354 "dependencies": ["permission:webview"], |
336 "contexts": ["blessed_extension"] | 355 "contexts": ["blessed_extension"] |
337 }, { | 356 }, { |
338 "channel": "stable", | 357 "channel": "stable", |
339 "contexts": ["webui"], | 358 "contexts": ["webui"], |
340 "matches": ["chrome://chrome-signin/*"] | 359 "matches": ["chrome://chrome-signin/*"] |
341 }] | 360 }] |
342 } | 361 } |
OLD | NEW |