| 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 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 "channel": "beta", | 278 "channel": "beta", |
| 279 "extension_types": ["extension", "legacy_packaged_app"] | 279 "extension_types": ["extension", "legacy_packaged_app"] |
| 280 }, | 280 }, |
| 281 { | 281 { |
| 282 "channel": "stable", | 282 "channel": "stable", |
| 283 "extension_types": ["extension", "legacy_packaged_app"], | 283 "extension_types": ["extension", "legacy_packaged_app"], |
| 284 // Legacy Browser Support (remove once this API hits stable). | 284 // Legacy Browser Support (remove once this API hits stable). |
| 285 "whitelist": ["BC3A0F8D5AE0DE6454D74AB376EBCC59E10CDD5A"] | 285 "whitelist": ["BC3A0F8D5AE0DE6454D74AB376EBCC59E10CDD5A"] |
| 286 } | 286 } |
| 287 ], | 287 ], |
| 288 "desktopCapture": [ | 288 "desktopCapture": { |
| 289 { | 289 "channel": "stable", |
| 290 "channel": "beta", | 290 "extension_types": ["extension", "platform_app"] |
| 291 "extension_types": ["extension", "platform_app"] | 291 }, |
| 292 }, | |
| 293 { | |
| 294 "channel": "stable", | |
| 295 "extension_types": ["extension", "platform_app"], | |
| 296 "whitelist": [ | |
| 297 "80B9DC58E5210749F052F5B4DB239C50CF72AEB6", | |
| 298 // Hangout Services component extension. | |
| 299 "DF84F03F9B960409CCDE0D895B9650EBE81C0A8E" | |
| 300 ] | |
| 301 } | |
| 302 ], | |
| 303 "dns": [ | 292 "dns": [ |
| 304 { | 293 { |
| 305 "channel": "dev", | 294 "channel": "dev", |
| 306 "extension_types": ["extension", "platform_app"] | 295 "extension_types": ["extension", "platform_app"] |
| 307 }, | 296 }, |
| 308 { | 297 { |
| 309 "channel": "stable", | 298 "channel": "stable", |
| 310 "extension_types": ["extension", "platform_app"], | 299 "extension_types": ["extension", "platform_app"], |
| 311 "whitelist": [ | 300 "whitelist": [ |
| 312 "7AE714FFD394E073F0294CFA134C9F91DB5FBAA4", // CCD Development | 301 "7AE714FFD394E073F0294CFA134C9F91DB5FBAA4", // CCD Development |
| (...skipping 633 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 946 // Only allowed for whitelisted extensions until all the caveats are | 935 // Only allowed for whitelisted extensions until all the caveats are |
| 947 // addressed. Tracked in crbug/285151. | 936 // addressed. Tracked in crbug/285151. |
| 948 "channel": "stable", | 937 "channel": "stable", |
| 949 "extension_types": ["extension"], | 938 "extension_types": ["extension"], |
| 950 "location": "component", | 939 "location": "component", |
| 951 "whitelist": [ | 940 "whitelist": [ |
| 952 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension | 941 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension |
| 953 ] | 942 ] |
| 954 }] | 943 }] |
| 955 } | 944 } |
| OLD | NEW |