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 844 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
855 "location": "component" | 855 "location": "component" |
856 }, | 856 }, |
857 "screensaver": { | 857 "screensaver": { |
858 "channel": "stable", | 858 "channel": "stable", |
859 "extension_types": ["legacy_packaged_app", "hosted_app", "platform_app"] | 859 "extension_types": ["legacy_packaged_app", "hosted_app", "platform_app"] |
860 }, | 860 }, |
861 "sessions": { | 861 "sessions": { |
862 "channel": "stable", | 862 "channel": "stable", |
863 "extension_types": ["extension", "legacy_packaged_app"] | 863 "extension_types": ["extension", "legacy_packaged_app"] |
864 }, | 864 }, |
| 865 "settingsPrivate": { |
| 866 "channel": "trunk", |
| 867 "extension_types": ["extension", "platform_app"], |
| 868 "platforms": ["chromeos", "mac", "win", "linux"], |
| 869 "whitelist": [] |
| 870 }, |
865 "signedInDevices": { | 871 "signedInDevices": { |
866 "channel": "dev", | 872 "channel": "dev", |
867 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] | 873 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] |
868 }, | 874 }, |
869 "streamsPrivate": { | 875 "streamsPrivate": { |
870 "channel": "stable", | 876 "channel": "stable", |
871 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], | 877 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], |
872 "whitelist": [ | 878 "whitelist": [ |
873 "787000072C6FBB934AF5A42275CDE73FC977D995", // browser_tests | 879 "787000072C6FBB934AF5A42275CDE73FC977D995", // browser_tests |
874 "2FC374607C2DF285634B67C64A2E356C607091C3", // QuickOffice | 880 "2FC374607C2DF285634B67C64A2E356C607091C3", // QuickOffice |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
966 }, | 972 }, |
967 "webstorePrivate": { | 973 "webstorePrivate": { |
968 "channel": "stable", | 974 "channel": "stable", |
969 "extension_types": ["extension", "legacy_packaged_app", "hosted_app"], | 975 "extension_types": ["extension", "legacy_packaged_app", "hosted_app"], |
970 "whitelist": [ | 976 "whitelist": [ |
971 "B44D08FD98F1523ED5837D78D0A606EA9D6206E5", // Web Store | 977 "B44D08FD98F1523ED5837D78D0A606EA9D6206E5", // Web Store |
972 "2653F6F6C39BC6EEBD36A09AFB92A19782FF7EB4" // Enterprise Web Store | 978 "2653F6F6C39BC6EEBD36A09AFB92A19782FF7EB4" // Enterprise Web Store |
973 ] | 979 ] |
974 } | 980 } |
975 } | 981 } |
OLD | NEW |