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 // See c/c/e/features/* to understand this file, in particular feature.h, | 5 // See c/c/e/features/* to understand this file, in particular feature.h, |
6 // simple_feature.h, and base_feature_provider.h. | 6 // simple_feature.h, and base_feature_provider.h. |
7 | 7 |
8 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash: | 8 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash: |
9 // | 9 // |
10 // $ echo -n "aaaabbbbccccddddeeeeffffgggghhhh" | \ | 10 // $ echo -n "aaaabbbbccccddddeeeeffffgggghhhh" | \ |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 { | 85 { |
86 "channel": "stable", | 86 "channel": "stable", |
87 "extension_types": ["platform_app"] | 87 "extension_types": ["platform_app"] |
88 }, | 88 }, |
89 { | 89 { |
90 "channel": "stable", | 90 "channel": "stable", |
91 "extension_types": ["extension"], | 91 "extension_types": ["extension"], |
92 "whitelist": [ | 92 "whitelist": [ |
93 // http://crbug.com/292856 | 93 // http://crbug.com/292856 |
94 "3F50C3A83839D9C76334BCE81CDEC06174F266AF", | 94 "3F50C3A83839D9C76334BCE81CDEC06174F266AF", |
95 "09FDCB5851B8F3378DB630D06E316076E89C95A6" | 95 "09FDCB5851B8F3378DB630D06E316076E89C95A6", |
| 96 "39BE69F11F68E4EED080DA3DC2394F7885B7AFF9", |
| 97 "FF78670081967CE21DB86A04AD94A0498F01E20A" |
96 ] | 98 ] |
97 } | 99 } |
98 ], | 100 ], |
99 "background": [ | 101 "background": [ |
100 { | 102 { |
101 "channel": "stable", | 103 "channel": "stable", |
102 "extension_types": [ | 104 "extension_types": [ |
103 "extension", "legacy_packaged_app", "hosted_app" | 105 "extension", "legacy_packaged_app", "hosted_app" |
104 ] | 106 ] |
105 }, | 107 }, |
(...skipping 825 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
931 // Only allowed for whitelisted extensions until all the caveats are | 933 // Only allowed for whitelisted extensions until all the caveats are |
932 // addressed. Tracked in crbug/285151. | 934 // addressed. Tracked in crbug/285151. |
933 "channel": "stable", | 935 "channel": "stable", |
934 "extension_types": ["extension"], | 936 "extension_types": ["extension"], |
935 "location": "component", | 937 "location": "component", |
936 "whitelist": [ | 938 "whitelist": [ |
937 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension | 939 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension |
938 ] | 940 ] |
939 }] | 941 }] |
940 } | 942 } |
OLD | NEW |