Chromium Code Reviews| 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 620 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 631 "mediaGalleries.delete": { | 631 "mediaGalleries.delete": { |
| 632 "channel": "stable", | 632 "channel": "stable", |
| 633 "extension_types": [ "platform_app" ] | 633 "extension_types": [ "platform_app" ] |
| 634 }, | 634 }, |
| 635 "mediaPlayerPrivate": { | 635 "mediaPlayerPrivate": { |
| 636 "channel": "stable", | 636 "channel": "stable", |
| 637 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], | 637 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], |
| 638 "location": "component", | 638 "location": "component", |
| 639 "platforms": ["chromeos"] | 639 "platforms": ["chromeos"] |
| 640 }, | 640 }, |
| 641 "mediaRouterPrivate": { | |
| 642 "channel": "stable", | |
| 643 "extension_types": ["platform_app", "extension"], | |
|
Devlin
2015/04/02 21:06:50
Do we need multiple extension types when there's o
Kevin M
2015/04/02 21:32:07
Done.
| |
| 644 "whitelist": [ | |
| 645 "63ED55E43214C211F82122ED56407FF1A807F2A3" // http://crbug.com/448569 | |
| 646 ] | |
| 647 }, | |
| 641 "metricsPrivate": { | 648 "metricsPrivate": { |
| 642 "channel": "stable", | 649 "channel": "stable", |
| 643 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], | 650 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], |
| 644 "whitelist": [ | 651 "whitelist": [ |
| 645 // The file manager and Google Now are component extensions, and they can | 652 // The file manager and Google Now are component extensions, and they can |
| 646 // currently use whitelisted interfaces without being on the corresponding | 653 // currently use whitelisted interfaces without being on the corresponding |
| 647 // whitelist. | 654 // whitelist. |
| 648 // Adding it to this whitelist documents their dependency, however, and | 655 // Adding it to this whitelist documents their dependency, however, and |
| 649 // also doesn't hurt anything. | 656 // also doesn't hurt anything. |
| 650 "A948368FC53BE437A55FEB414106E207925482F5", // File manager | 657 "A948368FC53BE437A55FEB414106E207925482F5", // File manager |
| (...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 974 }, | 981 }, |
| 975 "webstorePrivate": { | 982 "webstorePrivate": { |
| 976 "channel": "stable", | 983 "channel": "stable", |
| 977 "extension_types": ["extension", "legacy_packaged_app", "hosted_app"], | 984 "extension_types": ["extension", "legacy_packaged_app", "hosted_app"], |
| 978 "whitelist": [ | 985 "whitelist": [ |
| 979 "B44D08FD98F1523ED5837D78D0A606EA9D6206E5", // Web Store | 986 "B44D08FD98F1523ED5837D78D0A606EA9D6206E5", // Web Store |
| 980 "2653F6F6C39BC6EEBD36A09AFB92A19782FF7EB4" // Enterprise Web Store | 987 "2653F6F6C39BC6EEBD36A09AFB92A19782FF7EB4" // Enterprise Web Store |
| 981 ] | 988 ] |
| 982 } | 989 } |
| 983 } | 990 } |
| OLD | NEW |