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 18 matching lines...) Expand all Loading... |
29 { | 29 { |
30 "channel": "stable", | 30 "channel": "stable", |
31 "extension_types": ["extension", "platform_app"], | 31 "extension_types": ["extension", "platform_app"], |
32 "whitelist": [ | 32 "whitelist": [ |
33 "7AE714FFD394E073F0294CFA134C9F91DB5FBAA4", // CCD Development | 33 "7AE714FFD394E073F0294CFA134C9F91DB5FBAA4", // CCD Development |
34 "C7DA3A55C2355F994D3FDDAD120B426A0DF63843", // CCD Testing | 34 "C7DA3A55C2355F994D3FDDAD120B426A0DF63843", // CCD Testing |
35 "75E3CFFFC530582C583E4690EF97C70B9C8423B7" // CCD Release | 35 "75E3CFFFC530582C583E4690EF97C70B9C8423B7" // CCD Release |
36 ] | 36 ] |
37 } | 37 } |
38 ], | 38 ], |
| 39 "power": { |
| 40 "channel": "stable", |
| 41 "extension_types": [ "extension", "legacy_packaged_app", "platform_app" ] |
| 42 }, |
39 // Note: runtime is not actually a permission, but some systems check these | 43 // Note: runtime is not actually a permission, but some systems check these |
40 // values to verify restrictions. | 44 // values to verify restrictions. |
41 "runtime": { | 45 "runtime": { |
42 "channel": "stable", | 46 "channel": "stable", |
43 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] | 47 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] |
44 }, | 48 }, |
45 "socket": [ | 49 "socket": [ |
46 { | 50 { |
47 "channel": "stable", | 51 "channel": "stable", |
48 "extension_types": ["platform_app"] | 52 "extension_types": ["platform_app"] |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 { | 89 { |
86 "channel": "stable", | 90 "channel": "stable", |
87 "extension_types": ["extension"], | 91 "extension_types": ["extension"], |
88 "whitelist": [ | 92 "whitelist": [ |
89 "496B6890097EB6E19809ADEADD095A8721FBB2E0", // FIDO U2F APIs | 93 "496B6890097EB6E19809ADEADD095A8721FBB2E0", // FIDO U2F APIs |
90 "E24F1786D842E91E74C27929B0B3715A4689A473" // CryptoToken | 94 "E24F1786D842E91E74C27929B0B3715A4689A473" // CryptoToken |
91 ] | 95 ] |
92 } | 96 } |
93 ] | 97 ] |
94 } | 98 } |
OLD | NEW |