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 861 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
872 "rtcPrivate": { | 872 "rtcPrivate": { |
873 "channel": "stable", | 873 "channel": "stable", |
874 "extension_types": ["extension", "legacy_packaged_app"], | 874 "extension_types": ["extension", "legacy_packaged_app"], |
875 "whitelist": [ | 875 "whitelist": [ |
876 "53041A2FA309EECED01FFC751E7399186E860B2C", // Google Talk prod | 876 "53041A2FA309EECED01FFC751E7399186E860B2C", // Google Talk prod |
877 "A74A4D44C7CFCD8844830E6140C8D763E12DD8F3", // Google Talk beta | 877 "A74A4D44C7CFCD8844830E6140C8D763E12DD8F3", // Google Talk beta |
878 "E7E2461CE072DF036CF9592740196159E2D7C089", // Google Talk alpha | 878 "E7E2461CE072DF036CF9592740196159E2D7C089", // Google Talk alpha |
879 "312745D9BF916161191143F6490085EEA0434997" // Google Talk debug | 879 "312745D9BF916161191143F6490085EEA0434997" // Google Talk debug |
880 ] | 880 ] |
881 }, | 881 }, |
882 "screenlockPrivate": { | 882 "screenlockPrivate": [{ |
| 883 "platforms": ["chromeos"], |
| 884 "channel": "stable", |
| 885 "extension_types": ["platform_app"], |
| 886 "location": "component" |
| 887 }, { |
| 888 "platforms": ["mac", "win", "linux"], |
883 "channel": "stable", | 889 "channel": "stable", |
884 "extension_types": ["platform_app"], | 890 "extension_types": ["platform_app"], |
885 "whitelist": [ | 891 "whitelist": [ |
886 "lkegkdgachcnekllcdfkijonogckdnjo", // API test | 892 "lkegkdgachcnekllcdfkijonogckdnjo", // API test |
887 "190C131D270994E7330E9A3CD48224061CB10E2D", // dogfood 1 | 893 "E13990DC5440B6E270503DA27A35762F423725C3" // dogfood |
888 "7FDDD1C0CB0052596657FDEC92841D509DC8D404", // dogfood 2 | |
889 "E13990DC5440B6E270503DA27A35762F423725C3" // dogfood 3 | |
890 ] | 894 ] |
891 }, | 895 }], |
892 "screensaver": { | 896 "screensaver": { |
893 "channel": "stable", | 897 "channel": "stable", |
894 "extension_types": ["legacy_packaged_app", "hosted_app", "platform_app"] | 898 "extension_types": ["legacy_packaged_app", "hosted_app", "platform_app"] |
895 }, | 899 }, |
896 "serial": { | 900 "serial": { |
897 "channel": "stable", | 901 "channel": "stable", |
898 "extension_types": ["platform_app"] | 902 "extension_types": ["platform_app"] |
899 }, | 903 }, |
900 "sessions": { | 904 "sessions": { |
901 "channel": "stable", | 905 "channel": "stable", |
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1086 // Only allowed for whitelisted extensions until all the caveats are | 1090 // Only allowed for whitelisted extensions until all the caveats are |
1087 // addressed. Tracked in crbug/285151. | 1091 // addressed. Tracked in crbug/285151. |
1088 "channel": "stable", | 1092 "channel": "stable", |
1089 "extension_types": ["extension"], | 1093 "extension_types": ["extension"], |
1090 "location": "component", | 1094 "location": "component", |
1091 "whitelist": [ | 1095 "whitelist": [ |
1092 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension | 1096 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension |
1093 ] | 1097 ] |
1094 }] | 1098 }] |
1095 } | 1099 } |
OLD | NEW |