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 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
337 }, | 337 }, |
338 "easyUnlockPrivate": { | 338 "easyUnlockPrivate": { |
339 "channel": "stable", | 339 "channel": "stable", |
340 "extension_types": ["platform_app"], | 340 "extension_types": ["platform_app"], |
341 "location": "component" | 341 "location": "component" |
342 }, | 342 }, |
343 "embeddedExtensionOptions": { | 343 "embeddedExtensionOptions": { |
344 "channel": "trunk", | 344 "channel": "trunk", |
345 "extension_types": ["extension"] | 345 "extension_types": ["extension"] |
346 }, | 346 }, |
347 "enterprise.deviceAttributes": { | |
348 "channel": "dev", | |
349 "component_extensions_auto_granted": false, | |
not at google - send to devlin
2015/07/22 16:22:53
Why do you need this?
(I mean, every API should h
Polina Bondarenko
2015/07/24 16:47:59
Removed.
| |
350 "platforms": ["chromeos"], | |
351 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], | |
352 "location": "policy" | |
353 }, | |
347 "enterprise.platformKeys": { | 354 "enterprise.platformKeys": { |
348 "channel": "stable", | 355 "channel": "stable", |
349 "platforms": ["chromeos"], | 356 "platforms": ["chromeos"], |
350 "extension_types": ["extension", "legacy_packaged_app"], | 357 "extension_types": ["extension", "legacy_packaged_app"], |
351 "location": "policy" | 358 "location": "policy" |
352 }, | 359 }, |
353 "enterprise.platformKeysPrivate": { | 360 "enterprise.platformKeysPrivate": { |
354 "channel": "stable", | 361 "channel": "stable", |
355 "extension_types": ["extension", "legacy_packaged_app"], | 362 "extension_types": ["extension", "legacy_packaged_app"], |
356 "platforms": ["chromeos"], | 363 "platforms": ["chromeos"], |
(...skipping 688 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1045 "channel": "stable", | 1052 "channel": "stable", |
1046 "extension_types": ["platform_app"], | 1053 "extension_types": ["platform_app"], |
1047 "platforms": ["chromeos"], | 1054 "platforms": ["chromeos"], |
1048 "whitelist": [ | 1055 "whitelist": [ |
1049 "A948368FC53BE437A55FEB414106E207925482F5", // Files app | 1056 "A948368FC53BE437A55FEB414106E207925482F5", // Files app |
1050 "8C726564C6DBE7380BAB388DE6CC7EC93EB44B06", // Video player | 1057 "8C726564C6DBE7380BAB388DE6CC7EC93EB44B06", // Video player |
1051 "5065C83E84321221675D20FBE4DC43C655CC8C6F" // Files app tests | 1058 "5065C83E84321221675D20FBE4DC43C655CC8C6F" // Files app tests |
1052 ] | 1059 ] |
1053 } | 1060 } |
1054 } | 1061 } |
OLD | NEW |