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 743 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
754 }, { | 754 }, { |
755 "channel": "stable", | 755 "channel": "stable", |
756 "extension_types": ["extension"], | 756 "extension_types": ["extension"], |
757 "whitelist": [ | 757 "whitelist": [ |
758 // The connectivity diagnostic utility is a component extension that is | 758 // The connectivity diagnostic utility is a component extension that is |
759 // used to try to provide suggestions on how to fix connection issues. It | 759 // used to try to provide suggestions on how to fix connection issues. It |
760 // should be the only non-app allowed to use the socket API. | 760 // should be the only non-app allowed to use the socket API. |
761 "32A1BA997F8AB8DE29ED1BA94AAF00CF2A3FEFA7" | 761 "32A1BA997F8AB8DE29ED1BA94AAF00CF2A3FEFA7" |
762 ] | 762 ] |
763 }], | 763 }], |
764 "sockets.udp": { | |
not at google - send to devlin
2014/01/03 00:24:41
Could you submit these non-documentation changes s
rpaquay
2014/01/06 22:28:29
Done.
| |
765 "channel": "dev", | |
766 "extension_types": ["platform_app"] | |
767 }, | |
768 "syncFileSystem": { | 764 "syncFileSystem": { |
769 "channel": "stable", | 765 "channel": "stable", |
770 "extension_types": ["platform_app"] | 766 "extension_types": ["platform_app"] |
771 }, | 767 }, |
772 "systemIndicator": { | 768 "systemIndicator": { |
773 "channel": "dev", | 769 "channel": "dev", |
774 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] | 770 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] |
775 }, | 771 }, |
776 "storage": { | 772 "storage": { |
777 "channel": "stable", | 773 "channel": "stable", |
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
937 // Only allowed for whitelisted extensions until all the caveats are | 933 // Only allowed for whitelisted extensions until all the caveats are |
938 // addressed. Tracked in crbug/285151. | 934 // addressed. Tracked in crbug/285151. |
939 "channel": "stable", | 935 "channel": "stable", |
940 "extension_types": ["extension"], | 936 "extension_types": ["extension"], |
941 "location": "component", | 937 "location": "component", |
942 "whitelist": [ | 938 "whitelist": [ |
943 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension | 939 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension |
944 ] | 940 ] |
945 }] | 941 }] |
946 } | 942 } |
OLD | NEW |