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 909 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
920 ] | 920 ] |
921 }, | 921 }, |
922 "syncFileSystem": { | 922 "syncFileSystem": { |
923 "channel": "stable", | 923 "channel": "stable", |
924 "extension_types": ["platform_app"] | 924 "extension_types": ["platform_app"] |
925 }, | 925 }, |
926 "syncedNotificationsPrivate": { | 926 "syncedNotificationsPrivate": { |
927 "channel": "trunk", | 927 "channel": "trunk", |
928 "extension_types": ["platform_app"] | 928 "extension_types": ["platform_app"] |
929 }, | 929 }, |
930 "system.cpu": { | |
931 "channel": "stable", | |
932 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] | |
933 }, | |
934 "system.memory": { | |
935 "channel": "stable", | |
936 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] | |
937 }, | |
938 "system.network": { | |
939 "channel": "stable", | |
940 "extension_types": ["platform_app"] | |
941 }, | |
942 "system.storage": { | |
943 "channel": "stable", | |
944 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] | |
945 }, | |
946 "system.display": { | |
947 "channel": "stable", | |
948 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] | |
949 }, | |
950 "systemPrivate": { | 930 "systemPrivate": { |
951 "channel": "stable", | 931 "channel": "stable", |
952 "extension_types": ["extension", "legacy_packaged_app"], | 932 "extension_types": ["extension", "legacy_packaged_app"], |
953 "location": "component" | 933 "location": "component" |
954 }, | 934 }, |
955 "tabs": [ | 935 "tabs": [ |
956 { | 936 { |
957 "channel": "stable", | 937 "channel": "stable", |
958 "extension_types": ["extension", "legacy_packaged_app"] | 938 "extension_types": ["extension", "legacy_packaged_app"] |
959 }, | 939 }, |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1088 // Only allowed for whitelisted extensions until all the caveats are | 1068 // Only allowed for whitelisted extensions until all the caveats are |
1089 // addressed. Tracked in crbug/285151. | 1069 // addressed. Tracked in crbug/285151. |
1090 "channel": "stable", | 1070 "channel": "stable", |
1091 "extension_types": ["extension"], | 1071 "extension_types": ["extension"], |
1092 "location": "component", | 1072 "location": "component", |
1093 "whitelist": [ | 1073 "whitelist": [ |
1094 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension | 1074 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension |
1095 ] | 1075 ] |
1096 }] | 1076 }] |
1097 } | 1077 } |
OLD | NEW |