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 extension APIs implemented under src/chrome. | 5 // This features file defines extension APIs implemented under src/chrome. |
6 // See extensions/common/features/* to understand this file, in particular | 6 // See extensions/common/features/* to understand this file, in particular |
7 // feature.h, simple_feature.h, and base_feature_provider.h. | 7 // feature.h, simple_feature.h, and base_feature_provider.h. |
8 // | 8 // |
9 // Note that specifying "web_page", "blessed_web_page", or "all" as a context | 9 // Note that specifying "web_page", "blessed_web_page", or "all" as a context |
10 // type will require manually updating chrome/renderer/resources/dispatcher.cc. | 10 // type will require manually updating chrome/renderer/resources/dispatcher.cc. |
(...skipping 710 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
721 }, | 721 }, |
722 "tabCapture": { | 722 "tabCapture": { |
723 "dependencies": ["permission:tabCapture"], | 723 "dependencies": ["permission:tabCapture"], |
724 "contexts": ["blessed_extension"] | 724 "contexts": ["blessed_extension"] |
725 }, | 725 }, |
726 "tabs": { | 726 "tabs": { |
727 "channel": "stable", | 727 "channel": "stable", |
728 "extension_types": ["extension", "legacy_packaged_app"], | 728 "extension_types": ["extension", "legacy_packaged_app"], |
729 "contexts": ["blessed_extension"] | 729 "contexts": ["blessed_extension"] |
730 }, | 730 }, |
| 731 "tabs.setZoom": { |
| 732 "channel": "dev" |
| 733 }, |
| 734 "tabs.getZoom": { |
| 735 "channel": "dev" |
| 736 }, |
| 737 "tabs.setZoomSettings": { |
| 738 "channel": "dev" |
| 739 }, |
| 740 "tabs.getZoomSettings": { |
| 741 "channel": "dev" |
| 742 }, |
731 "terminalPrivate": { | 743 "terminalPrivate": { |
732 "platforms": ["chromeos"], | 744 "platforms": ["chromeos"], |
733 "dependencies": ["permission:terminalPrivate"], | 745 "dependencies": ["permission:terminalPrivate"], |
734 "contexts": ["blessed_extension"] | 746 "contexts": ["blessed_extension"] |
735 }, | 747 }, |
736 "topSites": { | 748 "topSites": { |
737 "dependencies": ["permission:topSites"], | 749 "dependencies": ["permission:topSites"], |
738 "contexts": ["blessed_extension"] | 750 "contexts": ["blessed_extension"] |
739 }, | 751 }, |
740 "tts": { | 752 "tts": { |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
806 "internal": true, | 818 "internal": true, |
807 "channel": "stable", | 819 "channel": "stable", |
808 "dependencies": ["permission:webview"], | 820 "dependencies": ["permission:webview"], |
809 "contexts": ["blessed_extension"] | 821 "contexts": ["blessed_extension"] |
810 }, | 822 }, |
811 "windows": { | 823 "windows": { |
812 "dependencies": ["api:tabs"], | 824 "dependencies": ["api:tabs"], |
813 "contexts": ["blessed_extension"] | 825 "contexts": ["blessed_extension"] |
814 } | 826 } |
815 } | 827 } |
OLD | NEW |