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 22 matching lines...) Expand all Loading... |
33 "whitelist": [ | 33 "whitelist": [ |
34 "2FC374607C2DF285634B67C64A2E356C607091C3", // Quickoffice | 34 "2FC374607C2DF285634B67C64A2E356C607091C3", // Quickoffice |
35 "3727DD3E564B6055387425027AD74C58784ACC15", // Quickoffice internal | 35 "3727DD3E564B6055387425027AD74C58784ACC15", // Quickoffice internal |
36 "12E618C3C6E97495AAECF2AC12DEB082353241C6" // QO component extension | 36 "12E618C3C6E97495AAECF2AC12DEB082353241C6" // QO component extension |
37 ] | 37 ] |
38 }], | 38 }], |
39 "dns": { | 39 "dns": { |
40 "dependencies": ["permission:dns"], | 40 "dependencies": ["permission:dns"], |
41 "contexts": ["blessed_extension"] | 41 "contexts": ["blessed_extension"] |
42 }, | 42 }, |
| 43 "hid": { |
| 44 "dependencies": ["permission:hid"], |
| 45 "contexts": ["blessed_extension"] |
| 46 }, |
43 "power": { | 47 "power": { |
44 "dependencies": ["permission:power"], | 48 "dependencies": ["permission:power"], |
45 "contexts": ["blessed_extension"] | 49 "contexts": ["blessed_extension"] |
46 }, | 50 }, |
47 "runtime": { | 51 "runtime": { |
48 "channel": "stable", | 52 "channel": "stable", |
49 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], | 53 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], |
50 "contexts": ["blessed_extension"] | 54 "contexts": ["blessed_extension"] |
51 }, | 55 }, |
52 "runtime.getManifest": { | 56 "runtime.getManifest": { |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 "types.private": { | 138 "types.private": { |
135 "channel": "dev", | 139 "channel": "dev", |
136 "extension_types": ["extension"], | 140 "extension_types": ["extension"], |
137 "location": "component" | 141 "location": "component" |
138 }, | 142 }, |
139 "usb": { | 143 "usb": { |
140 "dependencies": ["permission:usb"], | 144 "dependencies": ["permission:usb"], |
141 "contexts": ["blessed_extension"] | 145 "contexts": ["blessed_extension"] |
142 } | 146 } |
143 } | 147 } |
OLD | NEW |