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 // This is not a real API, only here for documentation purposes. |
| 44 // See http://crbug.com/275944 for background. |
| 45 "extensionTypes": { |
| 46 "channel": "stable", |
| 47 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], |
| 48 "contexts": ["blessed_extension"] |
| 49 }, |
43 "hid": { | 50 "hid": { |
44 "dependencies": ["permission:hid"], | 51 "dependencies": ["permission:hid"], |
45 "contexts": ["blessed_extension"] | 52 "contexts": ["blessed_extension"] |
46 }, | 53 }, |
47 "power": { | 54 "power": { |
48 "dependencies": ["permission:power"], | 55 "dependencies": ["permission:power"], |
49 "contexts": ["blessed_extension"] | 56 "contexts": ["blessed_extension"] |
50 }, | 57 }, |
51 "runtime": { | 58 "runtime": { |
52 "channel": "stable", | 59 "channel": "stable", |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 }, | 161 }, |
155 "usb": { | 162 "usb": { |
156 "dependencies": ["permission:usb"], | 163 "dependencies": ["permission:usb"], |
157 "contexts": ["blessed_extension"] | 164 "contexts": ["blessed_extension"] |
158 }, | 165 }, |
159 "usbPrivate": { | 166 "usbPrivate": { |
160 "channel": "dev", | 167 "channel": "dev", |
161 "contexts": ["webui"] | 168 "contexts": ["webui"] |
162 } | 169 } |
163 } | 170 } |
OLD | NEW |