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 737 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
748 "echoPrivate": { | 748 "echoPrivate": { |
749 "channel": "stable", | 749 "channel": "stable", |
750 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], | 750 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], |
751 "location": "component", | 751 "location": "component", |
752 "platforms": ["chromeos"] | 752 "platforms": ["chromeos"] |
753 }, | 753 }, |
754 "pageCapture": { | 754 "pageCapture": { |
755 "channel": "stable", | 755 "channel": "stable", |
756 "extension_types": ["extension", "legacy_packaged_app"] | 756 "extension_types": ["extension", "legacy_packaged_app"] |
757 }, | 757 }, |
| 758 "passwordsPrivate": { |
| 759 "channel": "trunk", |
| 760 "extension_types": ["extension", "platform_app"], |
| 761 "location": "component" |
| 762 }, |
758 "pointerLock": { | 763 "pointerLock": { |
759 "channel": "stable", | 764 "channel": "stable", |
760 "extension_types": ["platform_app"] | 765 "extension_types": ["platform_app"] |
761 }, | 766 }, |
762 "platformKeys": { | 767 "platformKeys": { |
763 "channel": "dev", | 768 "channel": "dev", |
764 "platforms": ["chromeos"], | 769 "platforms": ["chromeos"], |
765 "extension_types": ["extension", "platform_app"] | 770 "extension_types": ["extension", "platform_app"] |
766 }, | 771 }, |
767 "plugin": { | 772 "plugin": { |
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1018 "channel": "stable", | 1023 "channel": "stable", |
1019 "extension_types": ["platform_app"], | 1024 "extension_types": ["platform_app"], |
1020 "platforms": ["chromeos"], | 1025 "platforms": ["chromeos"], |
1021 "whitelist": [ | 1026 "whitelist": [ |
1022 "A948368FC53BE437A55FEB414106E207925482F5", // Files app | 1027 "A948368FC53BE437A55FEB414106E207925482F5", // Files app |
1023 "8C726564C6DBE7380BAB388DE6CC7EC93EB44B06", // Video player | 1028 "8C726564C6DBE7380BAB388DE6CC7EC93EB44B06", // Video player |
1024 "5065C83E84321221675D20FBE4DC43C655CC8C6F" // Files app tests | 1029 "5065C83E84321221675D20FBE4DC43C655CC8C6F" // Files app tests |
1025 ] | 1030 ] |
1026 } | 1031 } |
1027 } | 1032 } |
OLD | NEW |