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 // See c/c/e/features/* to understand this file, in particular feature.h, | 5 // See c/c/e/features/* to understand this file, in particular feature.h, |
6 // simple_feature.h, and base_feature_provider.h. | 6 // simple_feature.h, and base_feature_provider.h. |
7 // | 7 // |
8 // Note that specifying "web_page", "blessed_web_page", or "all" as a context | 8 // Note that specifying "web_page", "blessed_web_page", or "all" as a context |
9 // type will require manually updating chrome/renderer/resources/dispatcher.cc. | 9 // type will require manually updating chrome/renderer/resources/dispatcher.cc. |
10 | 10 |
11 { | 11 { |
12 "accessibilityFeatures": [{ | 12 "accessibilityFeatures": [{ |
13 "platforms": ["chromeos"], | 13 "platforms": ["chromeos"], |
14 "dependencies": ["permission:accessibilityFeatures.modify"], | 14 "dependencies": ["permission:accessibilityFeatures.modify"], |
15 "contexts": ["blessed_extension"] | 15 "contexts": ["blessed_extension"] |
16 }, { | 16 }, { |
17 "platforms": ["chromeos"], | 17 "platforms": ["chromeos"], |
18 "dependencies": ["permission:accessibilityFeatures.read"], | 18 "dependencies": ["permission:accessibilityFeatures.read"], |
19 "contexts": ["blessed_extension"] | 19 "contexts": ["blessed_extension"] |
20 }], | 20 }], |
| 21 "accessibilityPrivate": { |
| 22 "dependencies": ["permission:accessibilityPrivate"], |
| 23 "contexts": ["blessed_extension"] |
| 24 }, |
21 "activityLogPrivate": { | 25 "activityLogPrivate": { |
22 "dependencies": ["permission:activityLogPrivate"], | 26 "dependencies": ["permission:activityLogPrivate"], |
23 "contexts": ["blessed_extension"] | 27 "contexts": ["blessed_extension"] |
24 }, | 28 }, |
25 "adview": { | 29 "adview": { |
26 "dependencies": ["permission:adview"], | 30 "dependencies": ["permission:adview"], |
27 "contexts": ["blessed_extension"] | 31 "contexts": ["blessed_extension"] |
28 }, | 32 }, |
29 "alarms": { | 33 "alarms": { |
30 "dependencies": ["permission:alarms"], | 34 "dependencies": ["permission:alarms"], |
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
269 "dependencies": ["permission:enterprise.platformKeysPrivate"], | 273 "dependencies": ["permission:enterprise.platformKeysPrivate"], |
270 "contexts": ["blessed_extension"] | 274 "contexts": ["blessed_extension"] |
271 }, | 275 }, |
272 "events": { | 276 "events": { |
273 "internal": true, | 277 "internal": true, |
274 "channel": "stable", | 278 "channel": "stable", |
275 "extension_types": ["platform_app", "extension"], | 279 "extension_types": ["platform_app", "extension"], |
276 "contexts": "all", | 280 "contexts": "all", |
277 "matches": ["<all_urls>"] | 281 "matches": ["<all_urls>"] |
278 }, | 282 }, |
279 "experimental.accessibility": { | |
280 "dependencies": ["permission:experimental"], | |
281 "contexts": ["blessed_extension"] | |
282 }, | |
283 "experimental.devtools.audits": { | 283 "experimental.devtools.audits": { |
284 "dependencies": ["permission:experimental", "manifest:devtools_page"], | 284 "dependencies": ["permission:experimental", "manifest:devtools_page"], |
285 "extension_types": ["platform_app"], | 285 "extension_types": ["platform_app"], |
286 "contexts": ["blessed_extension"] | 286 "contexts": ["blessed_extension"] |
287 }, | 287 }, |
288 "experimental.devtools.console": { | 288 "experimental.devtools.console": { |
289 "dependencies": ["permission:experimental", "manifest:devtools_page"], | 289 "dependencies": ["permission:experimental", "manifest:devtools_page"], |
290 "extension_types": ["platform_app"], | 290 "extension_types": ["platform_app"], |
291 "contexts": ["blessed_extension"] | 291 "contexts": ["blessed_extension"] |
292 }, | 292 }, |
(...skipping 497 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
790 "internal": true, | 790 "internal": true, |
791 "channel": "stable", | 791 "channel": "stable", |
792 "dependencies": ["permission:webview"], | 792 "dependencies": ["permission:webview"], |
793 "contexts": ["blessed_extension"] | 793 "contexts": ["blessed_extension"] |
794 }, | 794 }, |
795 "windows": { | 795 "windows": { |
796 "dependencies": ["api:tabs"], | 796 "dependencies": ["api:tabs"], |
797 "contexts": ["blessed_extension"] | 797 "contexts": ["blessed_extension"] |
798 } | 798 } |
799 } | 799 } |
OLD | NEW |