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 724 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
735 "platforms": ["chromeos"] | 735 "platforms": ["chromeos"] |
736 }, | 736 }, |
737 "pageCapture": { | 737 "pageCapture": { |
738 "channel": "stable", | 738 "channel": "stable", |
739 "extension_types": ["extension", "legacy_packaged_app"] | 739 "extension_types": ["extension", "legacy_packaged_app"] |
740 }, | 740 }, |
741 "pointerLock": { | 741 "pointerLock": { |
742 "channel": "stable", | 742 "channel": "stable", |
743 "extension_types": ["platform_app"] | 743 "extension_types": ["platform_app"] |
744 }, | 744 }, |
| 745 "platformKeys": { |
| 746 "channel": "dev", |
| 747 "platforms": ["chromeos"], |
| 748 "extension_types": ["extension", "platform_app"] |
| 749 }, |
745 "plugin": { | 750 "plugin": { |
746 "channel": "stable", | 751 "channel": "stable", |
747 "extension_types": ["extension", "legacy_packaged_app"] | 752 "extension_types": ["extension", "legacy_packaged_app"] |
748 }, | 753 }, |
749 "preferencesPrivate": [ | 754 "preferencesPrivate": [ |
750 { | 755 { |
751 "channel": "stable", | 756 "channel": "stable", |
752 "extension_types": [ | 757 "extension_types": [ |
753 "extension" | 758 "extension" |
754 ], | 759 ], |
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
977 "webstorePrivate": { | 982 "webstorePrivate": { |
978 "channel": "stable", | 983 "channel": "stable", |
979 "extension_types": ["extension", "legacy_packaged_app", "hosted_app"], | 984 "extension_types": ["extension", "legacy_packaged_app", "hosted_app"], |
980 "whitelist": [ | 985 "whitelist": [ |
981 "B44D08FD98F1523ED5837D78D0A606EA9D6206E5", // Web Store | 986 "B44D08FD98F1523ED5837D78D0A606EA9D6206E5", // Web Store |
982 "2653F6F6C39BC6EEBD36A09AFB92A19782FF7EB4", // Enterprise Web Store | 987 "2653F6F6C39BC6EEBD36A09AFB92A19782FF7EB4", // Enterprise Web Store |
983 "2779FA8B45841D61A37207CCFAC9CB393964FE5B" // Login Proxy (prototype) | 988 "2779FA8B45841D61A37207CCFAC9CB393964FE5B" // Login Proxy (prototype) |
984 ] | 989 ] |
985 } | 990 } |
986 } | 991 } |
OLD | NEW |