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