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 628 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
639 "mediaGalleries.delete": { | 639 "mediaGalleries.delete": { |
640 "channel": "stable", | 640 "channel": "stable", |
641 "extension_types": [ "platform_app" ] | 641 "extension_types": [ "platform_app" ] |
642 }, | 642 }, |
643 "mediaPlayerPrivate": { | 643 "mediaPlayerPrivate": { |
644 "channel": "stable", | 644 "channel": "stable", |
645 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], | 645 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], |
646 "location": "component", | 646 "location": "component", |
647 "platforms": ["chromeos"] | 647 "platforms": ["chromeos"] |
648 }, | 648 }, |
| 649 "mediaRouterPrivate": { |
| 650 "channel": "stable", |
| 651 "extension_types": ["extension"], |
| 652 "whitelist": [ |
| 653 "63ED55E43214C211F82122ED56407FF1A807F2A3" // http://crbug.com/448569 |
| 654 ] |
| 655 }, |
649 "metricsPrivate": { | 656 "metricsPrivate": { |
650 "channel": "stable", | 657 "channel": "stable", |
651 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], | 658 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], |
652 "whitelist": [ | 659 "whitelist": [ |
653 // The file manager and Google Now are component extensions, and they can | 660 // The file manager and Google Now are component extensions, and they can |
654 // currently use whitelisted interfaces without being on the corresponding | 661 // currently use whitelisted interfaces without being on the corresponding |
655 // whitelist. | 662 // whitelist. |
656 // Adding it to this whitelist documents their dependency, however, and | 663 // Adding it to this whitelist documents their dependency, however, and |
657 // also doesn't hurt anything. | 664 // also doesn't hurt anything. |
658 "A948368FC53BE437A55FEB414106E207925482F5", // File manager | 665 "A948368FC53BE437A55FEB414106E207925482F5", // File manager |
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
982 }, | 989 }, |
983 "webstorePrivate": { | 990 "webstorePrivate": { |
984 "channel": "stable", | 991 "channel": "stable", |
985 "extension_types": ["extension", "legacy_packaged_app", "hosted_app"], | 992 "extension_types": ["extension", "legacy_packaged_app", "hosted_app"], |
986 "whitelist": [ | 993 "whitelist": [ |
987 "B44D08FD98F1523ED5837D78D0A606EA9D6206E5", // Web Store | 994 "B44D08FD98F1523ED5837D78D0A606EA9D6206E5", // Web Store |
988 "2653F6F6C39BC6EEBD36A09AFB92A19782FF7EB4" // Enterprise Web Store | 995 "2653F6F6C39BC6EEBD36A09AFB92A19782FF7EB4" // Enterprise Web Store |
989 ] | 996 ] |
990 } | 997 } |
991 } | 998 } |
OLD | NEW |