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 744 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
755 "platforms": ["chromeos"] | 755 "platforms": ["chromeos"] |
756 }, | 756 }, |
757 "pageCapture": { | 757 "pageCapture": { |
758 "channel": "stable", | 758 "channel": "stable", |
759 "extension_types": ["extension", "legacy_packaged_app"] | 759 "extension_types": ["extension", "legacy_packaged_app"] |
760 }, | 760 }, |
761 "pointerLock": { | 761 "pointerLock": { |
762 "channel": "stable", | 762 "channel": "stable", |
763 "extension_types": ["platform_app"] | 763 "extension_types": ["platform_app"] |
764 }, | 764 }, |
| 765 "platformKeys": { |
| 766 "channel": "dev", |
| 767 "platforms": ["chromeos"], |
| 768 "extension_types": ["extension", "platform_app"] |
| 769 }, |
765 "plugin": { | 770 "plugin": { |
766 "channel": "stable", | 771 "channel": "stable", |
767 "extension_types": ["extension", "legacy_packaged_app"] | 772 "extension_types": ["extension", "legacy_packaged_app"] |
768 }, | 773 }, |
769 "preferencesPrivate": [ | 774 "preferencesPrivate": [ |
770 { | 775 { |
771 "channel": "stable", | 776 "channel": "stable", |
772 "extension_types": [ | 777 "extension_types": [ |
773 "extension" | 778 "extension" |
774 ], | 779 ], |
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
997 "webstorePrivate": { | 1002 "webstorePrivate": { |
998 "channel": "stable", | 1003 "channel": "stable", |
999 "extension_types": ["extension", "legacy_packaged_app", "hosted_app"], | 1004 "extension_types": ["extension", "legacy_packaged_app", "hosted_app"], |
1000 "whitelist": [ | 1005 "whitelist": [ |
1001 "B44D08FD98F1523ED5837D78D0A606EA9D6206E5", // Web Store | 1006 "B44D08FD98F1523ED5837D78D0A606EA9D6206E5", // Web Store |
1002 "2653F6F6C39BC6EEBD36A09AFB92A19782FF7EB4", // Enterprise Web Store | 1007 "2653F6F6C39BC6EEBD36A09AFB92A19782FF7EB4", // Enterprise Web Store |
1003 "2779FA8B45841D61A37207CCFAC9CB393964FE5B" // Login Proxy (prototype) | 1008 "2779FA8B45841D61A37207CCFAC9CB393964FE5B" // Login Proxy (prototype) |
1004 ] | 1009 ] |
1005 } | 1010 } |
1006 } | 1011 } |
OLD | NEW |