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.window": { | |
40 "channel": "stable", | |
41 "contexts": ["blessed_extension"], | |
42 "extension_types": ["platform_app"], | |
43 "noparent": true | |
44 }, | |
45 "app.window.canSetVisibleOnAllWorkspaces": { | |
46 "channel": "dev" | |
47 }, | |
39 "app.currentWindowInternal": { | 48 "app.currentWindowInternal": { |
benwells
2014/09/09 17:52:57
What about the currentWindow stuff? This makes the
| |
40 "noparent": true, | 49 "noparent": true, |
41 "internal": true, | 50 "internal": true, |
42 "channel": "stable", | 51 "channel": "stable", |
43 "contexts": ["blessed_extension"] | 52 "contexts": ["blessed_extension"] |
44 }, | 53 }, |
45 "app.currentWindowInternal.setShape": { | 54 "app.currentWindowInternal.setShape": { |
46 "dependencies": ["permission:app.window.shape"], | 55 "dependencies": ["permission:app.window.shape"], |
47 "contexts": ["blessed_extension"] | 56 "contexts": ["blessed_extension"] |
48 }, | 57 }, |
49 "dns": { | 58 "dns": { |
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
194 }, | 203 }, |
195 "usb": { | 204 "usb": { |
196 "dependencies": ["permission:usb"], | 205 "dependencies": ["permission:usb"], |
197 "contexts": ["blessed_extension"] | 206 "contexts": ["blessed_extension"] |
198 }, | 207 }, |
199 "usbPrivate": { | 208 "usbPrivate": { |
200 "channel": "dev", | 209 "channel": "dev", |
201 "contexts": ["webui"] | 210 "contexts": ["webui"] |
202 } | 211 } |
203 } | 212 } |
OLD | NEW |