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 // See c/c/e/features/* to understand this file, in particular feature.h, | 5 // See c/c/e/features/* to understand this file, in particular feature.h, |
6 // simple_feature.h, and base_feature_provider.h. | 6 // simple_feature.h, and base_feature_provider.h. |
7 // | 7 // |
8 // Note that specifying "web_page", "blessed_web_page", or "all" as a context | 8 // Note that specifying "web_page", "blessed_web_page", or "all" as a context |
9 // type will require manually updating chrome/renderer/resources/dispatcher.cc. | 9 // type will require manually updating chrome/renderer/resources/dispatcher.cc. |
10 | 10 |
(...skipping 694 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
705 }, | 705 }, |
706 "tabCapture": { | 706 "tabCapture": { |
707 "dependencies": ["permission:tabCapture"], | 707 "dependencies": ["permission:tabCapture"], |
708 "contexts": ["blessed_extension"] | 708 "contexts": ["blessed_extension"] |
709 }, | 709 }, |
710 "tabs": { | 710 "tabs": { |
711 "channel": "stable", | 711 "channel": "stable", |
712 "extension_types": ["extension", "legacy_packaged_app"], | 712 "extension_types": ["extension", "legacy_packaged_app"], |
713 "contexts": ["blessed_extension"] | 713 "contexts": ["blessed_extension"] |
714 }, | 714 }, |
| 715 "tabs.setZoom": { |
| 716 "channel": "dev" |
| 717 }, |
| 718 "tabs.getZoom": { |
| 719 "channel": "dev" |
| 720 }, |
| 721 "tabs.setZoomSettings": { |
| 722 "channel": "dev" |
| 723 }, |
| 724 "tabs.getZoomSettings": { |
| 725 "channel": "dev" |
| 726 }, |
715 "terminalPrivate": { | 727 "terminalPrivate": { |
716 "platforms": ["chromeos"], | 728 "platforms": ["chromeos"], |
717 "dependencies": ["permission:terminalPrivate"], | 729 "dependencies": ["permission:terminalPrivate"], |
718 "contexts": ["blessed_extension"] | 730 "contexts": ["blessed_extension"] |
719 }, | 731 }, |
720 "test": { | 732 "test": { |
721 "internal": true, | 733 "internal": true, |
722 "channel": "stable", | 734 "channel": "stable", |
723 "extension_types": "all", | 735 "extension_types": "all", |
724 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] | 736 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
810 "internal": true, | 822 "internal": true, |
811 "channel": "stable", | 823 "channel": "stable", |
812 "dependencies": ["permission:webview"], | 824 "dependencies": ["permission:webview"], |
813 "contexts": ["blessed_extension"] | 825 "contexts": ["blessed_extension"] |
814 }, | 826 }, |
815 "windows": { | 827 "windows": { |
816 "dependencies": ["api:tabs"], | 828 "dependencies": ["api:tabs"], |
817 "contexts": ["blessed_extension"] | 829 "contexts": ["blessed_extension"] |
818 } | 830 } |
819 } | 831 } |
OLD | NEW |