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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 // used to try to provide suggestions on how to fix connection issues. | 46 // used to try to provide suggestions on how to fix connection issues. |
47 // It should be the only non-app allowed to use the socket API. | 47 // It should be the only non-app allowed to use the socket API. |
48 "32A1BA997F8AB8DE29ED1BA94AAF00CF2A3FEFA7" | 48 "32A1BA997F8AB8DE29ED1BA94AAF00CF2A3FEFA7" |
49 ] | 49 ] |
50 } | 50 } |
51 ], | 51 ], |
52 "storage": { | 52 "storage": { |
53 "channel": "stable", | 53 "channel": "stable", |
54 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], | 54 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], |
55 "min_manifest_version": 2 | 55 "min_manifest_version": 2 |
56 } | 56 }, |
| 57 "usb": [ |
| 58 { |
| 59 "channel": "stable", |
| 60 "extension_types": ["platform_app"] |
| 61 }, |
| 62 { |
| 63 "channel": "stable", |
| 64 "extension_types": ["extension"], |
| 65 "whitelist": [ |
| 66 "496B6890097EB6E19809ADEADD095A8721FBB2E0", // FIDO U2F APIs |
| 67 "E24F1786D842E91E74C27929B0B3715A4689A473" // CryptoToken |
| 68 ] |
| 69 } |
| 70 ], |
| 71 "usbDevices": [ |
| 72 { |
| 73 "channel": "stable", |
| 74 "extension_types": ["platform_app"] |
| 75 }, |
| 76 { |
| 77 "channel": "stable", |
| 78 "extension_types": ["extension"], |
| 79 "whitelist": [ |
| 80 "496B6890097EB6E19809ADEADD095A8721FBB2E0", // FIDO U2F APIs |
| 81 "E24F1786D842E91E74C27929B0B3715A4689A473" // CryptoToken |
| 82 ] |
| 83 } |
| 84 ] |
57 } | 85 } |
OLD | NEW |