| 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 }, | 62 }, |
| 63 { | 63 { |
| 64 "channel": "stable", | 64 "channel": "stable", |
| 65 "extension_types": ["extension"], | 65 "extension_types": ["extension"], |
| 66 "whitelist": [ | 66 "whitelist": [ |
| 67 "496B6890097EB6E19809ADEADD095A8721FBB2E0", // FIDO U2F APIs | 67 "496B6890097EB6E19809ADEADD095A8721FBB2E0", // FIDO U2F APIs |
| 68 "E24F1786D842E91E74C27929B0B3715A4689A473" // CryptoToken | 68 "E24F1786D842E91E74C27929B0B3715A4689A473" // CryptoToken |
| 69 ] | 69 ] |
| 70 } | 70 } |
| 71 ], | 71 ], |
| 72 "u2fDevices": [ |
| 73 { |
| 74 "channel": "dev", |
| 75 "extension_types": ["extension", "platform_app"], |
| 76 "whitelist": [ |
| 77 "496B6890097EB6E19809ADEADD095A8721FBB2E0", // FIDO U2F APIs |
| 78 "E24F1786D842E91E74C27929B0B3715A4689A473", // CryptoToken |
| 79 "6F9E349A0561C78A0D3F41496FE521C5151C7F71", // Security Key |
| 80 "C06709A259378015404ED20F75C7D08547E0F10B" // Security Key (dev) |
| 81 ] |
| 82 } |
| 83 ], |
| 72 "power": { | 84 "power": { |
| 73 "channel": "stable", | 85 "channel": "stable", |
| 74 "extension_types": [ "extension", "legacy_packaged_app", "platform_app" ] | 86 "extension_types": [ "extension", "legacy_packaged_app", "platform_app" ] |
| 75 }, | 87 }, |
| 76 // Note: runtime is not actually a permission, but some systems check these | 88 // Note: runtime is not actually a permission, but some systems check these |
| 77 // values to verify restrictions. | 89 // values to verify restrictions. |
| 78 "runtime": { | 90 "runtime": { |
| 79 "channel": "stable", | 91 "channel": "stable", |
| 80 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] | 92 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] |
| 81 }, | 93 }, |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 "extension_types": ["extension"], | 154 "extension_types": ["extension"], |
| 143 "whitelist": [ | 155 "whitelist": [ |
| 144 // http://crbug.com/292856 | 156 // http://crbug.com/292856 |
| 145 "3F50C3A83839D9C76334BCE81CDEC06174F266AF", | 157 "3F50C3A83839D9C76334BCE81CDEC06174F266AF", |
| 146 "09FDCB5851B8F3378DB630D06E316076E89C95A6", | 158 "09FDCB5851B8F3378DB630D06E316076E89C95A6", |
| 147 "A434B90223C3C52F2B69DB494736B63C612C774D" | 159 "A434B90223C3C52F2B69DB494736B63C612C774D" |
| 148 ] | 160 ] |
| 149 } | 161 } |
| 150 ] | 162 ] |
| 151 } | 163 } |
| OLD | NEW |