OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/chrome. | 6 // under src/chrome. |
7 // See extensions/common/features/* to understand this file, in particular | 7 // See extensions/common/features/* to understand this file, in particular |
8 // feature.h, simple_feature.h, and base_feature_provider.h. | 8 // feature.h, simple_feature.h, and base_feature_provider.h. |
9 | 9 |
10 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash: | 10 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash: |
(...skipping 856 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
867 "ttsEngine": { | 867 "ttsEngine": { |
868 "channel": "stable", | 868 "channel": "stable", |
869 "extension_types": ["extension", "legacy_packaged_app"] | 869 "extension_types": ["extension", "legacy_packaged_app"] |
870 }, | 870 }, |
871 "unlimitedStorage": { | 871 "unlimitedStorage": { |
872 "channel": "stable", | 872 "channel": "stable", |
873 "extension_types": [ | 873 "extension_types": [ |
874 "extension", "legacy_packaged_app", "hosted_app", "platform_app" | 874 "extension", "legacy_packaged_app", "hosted_app", "platform_app" |
875 ] | 875 ] |
876 }, | 876 }, |
877 "usb": [ | |
878 { | |
879 "channel": "stable", | |
880 "extension_types": ["platform_app"] | |
881 }, | |
882 { | |
883 "channel": "stable", | |
884 "extension_types": ["extension"], | |
885 "whitelist": [ | |
886 "496B6890097EB6E19809ADEADD095A8721FBB2E0", // FIDO U2F APIs | |
887 "E24F1786D842E91E74C27929B0B3715A4689A473" // CryptoToken | |
888 ] | |
889 } | |
890 ], | |
891 "usbDevices": [ | |
892 { | |
893 "channel": "stable", | |
894 "extension_types": ["platform_app"] | |
895 }, | |
896 { | |
897 "channel": "stable", | |
898 "extension_types": ["extension"], | |
899 "whitelist": [ | |
900 "496B6890097EB6E19809ADEADD095A8721FBB2E0", // FIDO U2F APIs | |
901 "E24F1786D842E91E74C27929B0B3715A4689A473" // CryptoToken | |
902 ] | |
903 } | |
904 ], | |
905 "videoCapture": [ | 877 "videoCapture": [ |
906 { | 878 { |
907 "channel": "stable", | 879 "channel": "stable", |
908 "extension_types": ["platform_app"] | 880 "extension_types": ["platform_app"] |
909 }, | 881 }, |
910 { | 882 { |
911 "channel": "stable", | 883 "channel": "stable", |
912 "extension_types": ["extension"], | 884 "extension_types": ["extension"], |
913 "whitelist": [ | 885 "whitelist": [ |
914 // http://crbug.com/292856 | 886 // http://crbug.com/292856 |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
989 // Only allowed for whitelisted extensions until all the caveats are | 961 // Only allowed for whitelisted extensions until all the caveats are |
990 // addressed. Tracked in crbug/285151. | 962 // addressed. Tracked in crbug/285151. |
991 "channel": "stable", | 963 "channel": "stable", |
992 "extension_types": ["extension"], | 964 "extension_types": ["extension"], |
993 "location": "component", | 965 "location": "component", |
994 "whitelist": [ | 966 "whitelist": [ |
995 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension | 967 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension |
996 ] | 968 ] |
997 }] | 969 }] |
998 } | 970 } |
OLD | NEW |