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 911 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
922 }, | 922 }, |
923 "screenlockPrivate": [{ | 923 "screenlockPrivate": [{ |
924 "platforms": ["chromeos"], | 924 "platforms": ["chromeos"], |
925 "channel": "stable", | 925 "channel": "stable", |
926 "extension_types": ["platform_app"], | 926 "extension_types": ["platform_app"], |
927 "location": "component" | 927 "location": "component" |
928 }, { | 928 }, { |
929 "platforms": ["mac", "win", "linux"], | 929 "platforms": ["mac", "win", "linux"], |
930 "channel": "stable", | 930 "channel": "stable", |
931 "extension_types": ["platform_app"], | 931 "extension_types": ["platform_app"], |
932 "location": "component", | |
not at google - send to devlin
2014/11/19 20:20:42
Why did you need to make this change?
Mike Lerman
2014/11/20 17:18:33
After consultation with isherman@, who works on th
not at google - send to devlin
2014/11/20 18:27:20
Alright, it just seemed orthogonal to your API.
T
Ilya Sherman
2014/11/21 02:08:41
Agreed, that's what I had intended to nudge Mike t
| |
932 "whitelist": [ | 933 "whitelist": [ |
933 "lkegkdgachcnekllcdfkijonogckdnjo", // API test | 934 "lkegkdgachcnekllcdfkijonogckdnjo", // API test |
934 "E13990DC5440B6E270503DA27A35762F423725C3" // dogfood | 935 "E13990DC5440B6E270503DA27A35762F423725C3" // dogfood |
935 ] | 936 ] |
936 }], | 937 }], |
937 "screensaver": { | 938 "screensaver": { |
938 "channel": "stable", | 939 "channel": "stable", |
939 "extension_types": ["legacy_packaged_app", "hosted_app", "platform_app"] | 940 "extension_types": ["legacy_packaged_app", "hosted_app", "platform_app"] |
940 }, | 941 }, |
941 "sessions": { | 942 "sessions": { |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1072 "webstorePrivate": { | 1073 "webstorePrivate": { |
1073 "channel": "stable", | 1074 "channel": "stable", |
1074 "extension_types": ["extension", "legacy_packaged_app", "hosted_app"], | 1075 "extension_types": ["extension", "legacy_packaged_app", "hosted_app"], |
1075 "whitelist": [ | 1076 "whitelist": [ |
1076 "B44D08FD98F1523ED5837D78D0A606EA9D6206E5", // Web Store | 1077 "B44D08FD98F1523ED5837D78D0A606EA9D6206E5", // Web Store |
1077 "2653F6F6C39BC6EEBD36A09AFB92A19782FF7EB4", // Enterprise Web Store | 1078 "2653F6F6C39BC6EEBD36A09AFB92A19782FF7EB4", // Enterprise Web Store |
1078 "2779FA8B45841D61A37207CCFAC9CB393964FE5B" // Login Proxy (prototype) | 1079 "2779FA8B45841D61A37207CCFAC9CB393964FE5B" // Login Proxy (prototype) |
1079 ] | 1080 ] |
1080 } | 1081 } |
1081 } | 1082 } |
OLD | NEW |