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