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 906 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
917 "location": "component" | 917 "location": "component" |
918 }, | 918 }, |
919 "screensaver": { | 919 "screensaver": { |
920 "channel": "stable", | 920 "channel": "stable", |
921 "extension_types": ["legacy_packaged_app", "hosted_app", "platform_app"] | 921 "extension_types": ["legacy_packaged_app", "hosted_app", "platform_app"] |
922 }, | 922 }, |
923 "sessions": { | 923 "sessions": { |
924 "channel": "stable", | 924 "channel": "stable", |
925 "extension_types": ["extension", "legacy_packaged_app"] | 925 "extension_types": ["extension", "legacy_packaged_app"] |
926 }, | 926 }, |
927 "settingsPrivate": { | 927 "settingsPrivate": [ |
928 "channel": "trunk", | 928 { |
929 "extension_types": ["extension", "platform_app"], | 929 "channel": "trunk", |
930 "location": "component" | 930 "extension_types": ["extension", "platform_app"], |
931 }, | 931 "location": "component" |
932 }, | |
933 { | |
934 "channel": "trunk", | |
Devlin
2016/01/28 19:04:11
Assuming you want to use this anywhere other than
amp
2016/01/28 19:38:35
Yes, we will want to have this released to stable
| |
935 "extension_types": ["extension", "platform_app"], | |
amp
2016/01/28 17:59:11
I tried adding a
"location": "external_component"
Devlin
2016/01/28 19:04:11
Huh. Interesting. With a whitelist, it doesn't r
amp
2016/01/28 19:38:35
Right, thanks for the clarification. My dev build
| |
936 "whitelist": [ | |
937 "63ED55E43214C211F82122ED56407FF1A807F2A3", // Media Router Dev | |
938 "226CF815E39A363090A1E547D53063472B8279FA" // Media Router Release | |
939 ] | |
940 } | |
941 ], | |
932 "signedInDevices": { | 942 "signedInDevices": { |
933 "channel": "dev", | 943 "channel": "dev", |
934 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] | 944 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] |
935 }, | 945 }, |
936 "streamsPrivate": { | 946 "streamsPrivate": { |
937 "channel": "stable", | 947 "channel": "stable", |
938 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], | 948 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], |
939 "whitelist": [ | 949 "whitelist": [ |
940 "787000072C6FBB934AF5A42275CDE73FC977D995", // browser_tests | 950 "787000072C6FBB934AF5A42275CDE73FC977D995", // browser_tests |
941 "2FC374607C2DF285634B67C64A2E356C607091C3", // QuickOffice | 951 "2FC374607C2DF285634B67C64A2E356C607091C3", // QuickOffice |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1060 "channel": "stable", | 1070 "channel": "stable", |
1061 "extension_types": ["platform_app"], | 1071 "extension_types": ["platform_app"], |
1062 "platforms": ["chromeos"], | 1072 "platforms": ["chromeos"], |
1063 "whitelist": [ | 1073 "whitelist": [ |
1064 "A948368FC53BE437A55FEB414106E207925482F5", // Files app | 1074 "A948368FC53BE437A55FEB414106E207925482F5", // Files app |
1065 "8C726564C6DBE7380BAB388DE6CC7EC93EB44B06", // Video player | 1075 "8C726564C6DBE7380BAB388DE6CC7EC93EB44B06", // Video player |
1066 "5065C83E84321221675D20FBE4DC43C655CC8C6F" // Files app tests | 1076 "5065C83E84321221675D20FBE4DC43C655CC8C6F" // Files app tests |
1067 ] | 1077 ] |
1068 } | 1078 } |
1069 } | 1079 } |
OLD | NEW |