OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/chrome. | 5 // This features file defines extension APIs implemented under src/chrome. |
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 10 matching lines...) Expand all Loading... |
21 { | 21 { |
22 "accessibilityFeatures": [{ | 22 "accessibilityFeatures": [{ |
23 "platforms": ["chromeos"], | 23 "platforms": ["chromeos"], |
24 "dependencies": ["permission:accessibilityFeatures.modify"], | 24 "dependencies": ["permission:accessibilityFeatures.modify"], |
25 "contexts": ["blessed_extension"] | 25 "contexts": ["blessed_extension"] |
26 }, { | 26 }, { |
27 "platforms": ["chromeos"], | 27 "platforms": ["chromeos"], |
28 "dependencies": ["permission:accessibilityFeatures.read"], | 28 "dependencies": ["permission:accessibilityFeatures.read"], |
29 "contexts": ["blessed_extension"] | 29 "contexts": ["blessed_extension"] |
30 }], | 30 }], |
| 31 "accessibilityPrivate": { |
| 32 "dependencies": ["permission:accessibilityPrivate"], |
| 33 "contexts": ["blessed_extension"] |
| 34 }, |
31 "activityLogPrivate": { | 35 "activityLogPrivate": { |
32 "dependencies": ["permission:activityLogPrivate"], | 36 "dependencies": ["permission:activityLogPrivate"], |
33 "contexts": ["blessed_extension"] | 37 "contexts": ["blessed_extension"] |
34 }, | 38 }, |
35 "adview": { | 39 "adview": { |
36 "dependencies": ["permission:adview"], | 40 "dependencies": ["permission:adview"], |
37 "contexts": ["blessed_extension"] | 41 "contexts": ["blessed_extension"] |
38 }, | 42 }, |
39 "alarms": { | 43 "alarms": { |
40 "dependencies": ["permission:alarms"], | 44 "dependencies": ["permission:alarms"], |
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
306 "dependencies": ["permission:enterprise.platformKeysPrivate"], | 310 "dependencies": ["permission:enterprise.platformKeysPrivate"], |
307 "contexts": ["blessed_extension"] | 311 "contexts": ["blessed_extension"] |
308 }, | 312 }, |
309 "events": { | 313 "events": { |
310 "internal": true, | 314 "internal": true, |
311 "channel": "stable", | 315 "channel": "stable", |
312 "extension_types": ["platform_app", "extension"], | 316 "extension_types": ["platform_app", "extension"], |
313 "contexts": "all", | 317 "contexts": "all", |
314 "matches": ["<all_urls>"] | 318 "matches": ["<all_urls>"] |
315 }, | 319 }, |
316 "experimental.accessibility": { | |
317 "dependencies": ["permission:experimental"], | |
318 "contexts": ["blessed_extension"] | |
319 }, | |
320 "experimental.devtools.audits": { | 320 "experimental.devtools.audits": { |
321 "dependencies": ["permission:experimental", "manifest:devtools_page"], | 321 "dependencies": ["permission:experimental", "manifest:devtools_page"], |
322 "extension_types": ["platform_app"], | 322 "extension_types": ["platform_app"], |
323 "contexts": ["blessed_extension"] | 323 "contexts": ["blessed_extension"] |
324 }, | 324 }, |
325 "experimental.devtools.console": { | 325 "experimental.devtools.console": { |
326 "dependencies": ["permission:experimental", "manifest:devtools_page"], | 326 "dependencies": ["permission:experimental", "manifest:devtools_page"], |
327 "extension_types": ["platform_app"], | 327 "extension_types": ["platform_app"], |
328 "contexts": ["blessed_extension"] | 328 "contexts": ["blessed_extension"] |
329 }, | 329 }, |
(...skipping 435 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
765 "internal": true, | 765 "internal": true, |
766 "channel": "stable", | 766 "channel": "stable", |
767 "dependencies": ["permission:webview"], | 767 "dependencies": ["permission:webview"], |
768 "contexts": ["blessed_extension"] | 768 "contexts": ["blessed_extension"] |
769 }, | 769 }, |
770 "windows": { | 770 "windows": { |
771 "dependencies": ["api:tabs"], | 771 "dependencies": ["api:tabs"], |
772 "contexts": ["blessed_extension"] | 772 "contexts": ["blessed_extension"] |
773 } | 773 } |
774 } | 774 } |
OLD | NEW |