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 18 matching lines...) Expand all Loading... |
29 "component_extensions_auto_granted": false, | 29 "component_extensions_auto_granted": false, |
30 "contexts": ["blessed_extension"], | 30 "contexts": ["blessed_extension"], |
31 "extension_types": ["extension"], | 31 "extension_types": ["extension"], |
32 "noparent": true, | 32 "noparent": true, |
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 "app.currentWindowInternal": { |
| 40 "noparent": true, |
| 41 "internal": true, |
| 42 "channel": "stable", |
| 43 "contexts": ["blessed_extension"] |
| 44 }, |
| 45 "app.currentWindowInternal.setShape": { |
| 46 "dependencies": ["permission:app.window.shape"], |
| 47 "contexts": ["blessed_extension"] |
| 48 }, |
39 "dns": { | 49 "dns": { |
40 "dependencies": ["permission:dns"], | 50 "dependencies": ["permission:dns"], |
41 "contexts": ["blessed_extension"] | 51 "contexts": ["blessed_extension"] |
42 }, | 52 }, |
43 // This is not a real API, only here for documentation purposes. | 53 // This is not a real API, only here for documentation purposes. |
44 // See http://crbug.com/275944 for background. | 54 // See http://crbug.com/275944 for background. |
45 "extensionTypes": { | 55 "extensionTypes": { |
46 "channel": "stable", | 56 "channel": "stable", |
47 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], | 57 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], |
48 "contexts": ["blessed_extension"] | 58 "contexts": ["blessed_extension"] |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
184 }, | 194 }, |
185 "usb": { | 195 "usb": { |
186 "dependencies": ["permission:usb"], | 196 "dependencies": ["permission:usb"], |
187 "contexts": ["blessed_extension"] | 197 "contexts": ["blessed_extension"] |
188 }, | 198 }, |
189 "usbPrivate": { | 199 "usbPrivate": { |
190 "channel": "dev", | 200 "channel": "dev", |
191 "contexts": ["webui"] | 201 "contexts": ["webui"] |
192 } | 202 } |
193 } | 203 } |
OLD | NEW |