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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 "internal": true, | 155 "internal": true, |
156 "channel": "trunk", | 156 "channel": "trunk", |
157 "contexts": "all", | 157 "contexts": "all", |
158 "matches": ["<all_urls>"] | 158 "matches": ["<all_urls>"] |
159 } | 159 } |
160 ], | 160 ], |
161 "hid": { | 161 "hid": { |
162 "dependencies": ["permission:hid"], | 162 "dependencies": ["permission:hid"], |
163 "contexts": ["blessed_extension"] | 163 "contexts": ["blessed_extension"] |
164 }, | 164 }, |
165 "hid.onDeviceAdded": { | |
166 "channel": "dev", | |
167 "dependencies": ["permission:hid"], | |
168 "contexts": ["blessed_extension"] | |
169 }, | |
170 "hid.onDeviceRemoved": { | |
171 "channel": "dev", | |
172 "dependencies": ["permission:hid"], | |
173 "contexts": ["blessed_extension"] | |
174 }, | |
175 "management": { | 165 "management": { |
176 "dependencies": ["permission:management"], | 166 "dependencies": ["permission:management"], |
177 "contexts": ["blessed_extension"] | 167 "contexts": ["blessed_extension"] |
178 }, | 168 }, |
179 "management.getPermissionWarningsByManifest": { | 169 "management.getPermissionWarningsByManifest": { |
180 "dependencies": [], | 170 "dependencies": [], |
181 "channel": "stable", | 171 "channel": "stable", |
182 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] | 172 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] |
183 }, | 173 }, |
184 "management.getSelf": { | 174 "management.getSelf": { |
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
389 }], | 379 }], |
390 "webViewRequest": [{ | 380 "webViewRequest": [{ |
391 "dependencies": ["permission:webview"], | 381 "dependencies": ["permission:webview"], |
392 "contexts": ["blessed_extension"] | 382 "contexts": ["blessed_extension"] |
393 }, { | 383 }, { |
394 "channel": "stable", | 384 "channel": "stable", |
395 "contexts": ["webui"], | 385 "contexts": ["webui"], |
396 "matches": ["chrome://chrome-signin/*", "chrome://oobe/*"] | 386 "matches": ["chrome://chrome-signin/*", "chrome://oobe/*"] |
397 }] | 387 }] |
398 } | 388 } |
OLD | NEW |