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 permissions for extension APIs implemented | 5 // This features file defines permissions for extension APIs implemented |
6 // under src/extensions. | 6 // under src/extensions. |
7 | 7 |
8 // See extensions/common/features/* to understand this file, in particular | 8 // See extensions/common/features/* to understand this file, in particular |
9 // feature.h, simple_feature.h, and base_feature_provider.h. | 9 // feature.h, simple_feature.h, and base_feature_provider.h. |
10 | 10 |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 "power": { | 53 "power": { |
54 "channel": "stable", | 54 "channel": "stable", |
55 "extension_types": [ "extension", "legacy_packaged_app", "platform_app" ] | 55 "extension_types": [ "extension", "legacy_packaged_app", "platform_app" ] |
56 }, | 56 }, |
57 // Note: runtime is not actually a permission, but some systems check these | 57 // Note: runtime is not actually a permission, but some systems check these |
58 // values to verify restrictions. | 58 // values to verify restrictions. |
59 "runtime": { | 59 "runtime": { |
60 "channel": "stable", | 60 "channel": "stable", |
61 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] | 61 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] |
62 }, | 62 }, |
| 63 "serial": { |
| 64 "channel": "stable", |
| 65 "extension_types": ["platform_app"] |
| 66 }, |
63 "socket": [ | 67 "socket": [ |
64 { | 68 { |
65 "channel": "stable", | 69 "channel": "stable", |
66 "extension_types": ["platform_app"] | 70 "extension_types": ["platform_app"] |
67 }, | 71 }, |
68 { | 72 { |
69 "channel": "stable", | 73 "channel": "stable", |
70 "extension_types": ["extension"], | 74 "extension_types": ["extension"], |
71 "whitelist": [ | 75 "whitelist": [ |
72 // The connectivity diagnostic utility is a component extension that is | 76 // The connectivity diagnostic utility is a component extension that is |
(...skipping 30 matching lines...) Expand all Loading... |
103 { | 107 { |
104 "channel": "stable", | 108 "channel": "stable", |
105 "extension_types": ["extension"], | 109 "extension_types": ["extension"], |
106 "whitelist": [ | 110 "whitelist": [ |
107 "496B6890097EB6E19809ADEADD095A8721FBB2E0", // FIDO U2F APIs | 111 "496B6890097EB6E19809ADEADD095A8721FBB2E0", // FIDO U2F APIs |
108 "E24F1786D842E91E74C27929B0B3715A4689A473" // CryptoToken | 112 "E24F1786D842E91E74C27929B0B3715A4689A473" // CryptoToken |
109 ] | 113 ] |
110 } | 114 } |
111 ] | 115 ] |
112 } | 116 } |
OLD | NEW |