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 22 matching lines...) Expand all Loading... |
33 }, | 33 }, |
34 "adview": { | 34 "adview": { |
35 "channel": "dev", | 35 "channel": "dev", |
36 "extension_types": ["platform_app"] | 36 "extension_types": ["platform_app"] |
37 }, | 37 }, |
38 "alarms": { | 38 "alarms": { |
39 "channel": "stable", | 39 "channel": "stable", |
40 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], | 40 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], |
41 "min_manifest_version": 2 | 41 "min_manifest_version": 2 |
42 }, | 42 }, |
43 "alwaysOnTopWindows": [ | 43 "alwaysOnTopWindows": { |
44 { | 44 "channel": "stable", |
45 "channel": "dev", | 45 "extension_types": ["platform_app"] |
46 "extension_types": ["platform_app"] | 46 }, |
47 }, | |
48 { | |
49 "channel": "stable", | |
50 "extension_types": ["platform_app"], | |
51 "whitelist": [ | |
52 "0F42756099D914A026DADFA182871C015735DD95", | |
53 "2D22CDB6583FD0A13758AEBE8B15E45208B4E9A7" | |
54 ] | |
55 } | |
56 ], | |
57 "audio": [ | 47 "audio": [ |
58 { | 48 { |
59 "channel": "dev", | 49 "channel": "dev", |
60 "extension_types": ["platform_app"] | 50 "extension_types": ["platform_app"] |
61 }, | 51 }, |
62 { | 52 { |
63 "channel": "stable", | 53 "channel": "stable", |
64 "extension_types": ["platform_app"], | 54 "extension_types": ["platform_app"], |
65 "whitelist": [ | 55 "whitelist": [ |
66 "8C3741E3AF0B93B6E8E0DDD499BB0B74839EA578", | 56 "8C3741E3AF0B93B6E8E0DDD499BB0B74839EA578", |
(...skipping 888 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
955 // Only allowed for whitelisted extensions until all the caveats are | 945 // Only allowed for whitelisted extensions until all the caveats are |
956 // addressed. Tracked in crbug/285151. | 946 // addressed. Tracked in crbug/285151. |
957 "channel": "stable", | 947 "channel": "stable", |
958 "extension_types": ["extension"], | 948 "extension_types": ["extension"], |
959 "location": "component", | 949 "location": "component", |
960 "whitelist": [ | 950 "whitelist": [ |
961 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension | 951 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension |
962 ] | 952 ] |
963 }] | 953 }] |
964 } | 954 } |
OLD | NEW |