| 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 15 matching lines...) Expand all Loading... |
| 26 { | 26 { |
| 27 "channel": "stable", | 27 "channel": "stable", |
| 28 "extension_types": ["extension", "platform_app"], | 28 "extension_types": ["extension", "platform_app"], |
| 29 "whitelist": [ | 29 "whitelist": [ |
| 30 "7AE714FFD394E073F0294CFA134C9F91DB5FBAA4", // CCD Development | 30 "7AE714FFD394E073F0294CFA134C9F91DB5FBAA4", // CCD Development |
| 31 "C7DA3A55C2355F994D3FDDAD120B426A0DF63843", // CCD Testing | 31 "C7DA3A55C2355F994D3FDDAD120B426A0DF63843", // CCD Testing |
| 32 "75E3CFFFC530582C583E4690EF97C70B9C8423B7" // CCD Release | 32 "75E3CFFFC530582C583E4690EF97C70B9C8423B7" // CCD Release |
| 33 ] | 33 ] |
| 34 } | 34 } |
| 35 ], | 35 ], |
| 36 // Note: runtime is not actually a permission, but some systems check these |
| 37 // values to verify restrictions. |
| 38 "runtime": { |
| 39 "channel": "stable", |
| 40 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] |
| 41 }, |
| 36 "socket": [ | 42 "socket": [ |
| 37 { | 43 { |
| 38 "channel": "stable", | 44 "channel": "stable", |
| 39 "extension_types": ["platform_app"] | 45 "extension_types": ["platform_app"] |
| 40 }, | 46 }, |
| 41 { | 47 { |
| 42 "channel": "stable", | 48 "channel": "stable", |
| 43 "extension_types": ["extension"], | 49 "extension_types": ["extension"], |
| 44 "whitelist": [ | 50 "whitelist": [ |
| 45 // The connectivity diagnostic utility is a component extension that is | 51 // The connectivity diagnostic utility is a component extension that is |
| (...skipping 30 matching lines...) Expand all Loading... |
| 76 { | 82 { |
| 77 "channel": "stable", | 83 "channel": "stable", |
| 78 "extension_types": ["extension"], | 84 "extension_types": ["extension"], |
| 79 "whitelist": [ | 85 "whitelist": [ |
| 80 "496B6890097EB6E19809ADEADD095A8721FBB2E0", // FIDO U2F APIs | 86 "496B6890097EB6E19809ADEADD095A8721FBB2E0", // FIDO U2F APIs |
| 81 "E24F1786D842E91E74C27929B0B3715A4689A473" // CryptoToken | 87 "E24F1786D842E91E74C27929B0B3715A4689A473" // CryptoToken |
| 82 ] | 88 ] |
| 83 } | 89 } |
| 84 ] | 90 ] |
| 85 } | 91 } |
| OLD | NEW |