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 658 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
669 }, | 669 }, |
670 "tabCapture": { | 670 "tabCapture": { |
671 "dependencies": ["permission:tabCapture"], | 671 "dependencies": ["permission:tabCapture"], |
672 "contexts": ["blessed_extension"] | 672 "contexts": ["blessed_extension"] |
673 }, | 673 }, |
674 "tabs": { | 674 "tabs": { |
675 "channel": "stable", | 675 "channel": "stable", |
676 "extension_types": ["extension", "legacy_packaged_app"], | 676 "extension_types": ["extension", "legacy_packaged_app"], |
677 "contexts": ["blessed_extension"] | 677 "contexts": ["blessed_extension"] |
678 }, | 678 }, |
| 679 "tabs.setZoom": { |
| 680 "channel": "dev" |
| 681 }, |
| 682 "tabs.getZoom": { |
| 683 "channel": "dev" |
| 684 }, |
| 685 "tabs.setZoomSettings": { |
| 686 "channel": "dev" |
| 687 }, |
| 688 "tabs.getZoomSettings": { |
| 689 "channel": "dev" |
| 690 }, |
679 "terminalPrivate": { | 691 "terminalPrivate": { |
680 "dependencies": ["permission:terminalPrivate"], | 692 "dependencies": ["permission:terminalPrivate"], |
681 "contexts": ["blessed_extension"] | 693 "contexts": ["blessed_extension"] |
682 }, | 694 }, |
683 "topSites": { | 695 "topSites": { |
684 "dependencies": ["permission:topSites"], | 696 "dependencies": ["permission:topSites"], |
685 "contexts": ["blessed_extension"] | 697 "contexts": ["blessed_extension"] |
686 }, | 698 }, |
687 "tts": { | 699 "tts": { |
688 "dependencies": ["permission:tts"], | 700 "dependencies": ["permission:tts"], |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
752 "internal": true, | 764 "internal": true, |
753 "channel": "stable", | 765 "channel": "stable", |
754 "dependencies": ["permission:webview"], | 766 "dependencies": ["permission:webview"], |
755 "contexts": ["blessed_extension"] | 767 "contexts": ["blessed_extension"] |
756 }, | 768 }, |
757 "windows": { | 769 "windows": { |
758 "dependencies": ["api:tabs"], | 770 "dependencies": ["api:tabs"], |
759 "contexts": ["blessed_extension"] | 771 "contexts": ["blessed_extension"] |
760 } | 772 } |
761 } | 773 } |
OLD | NEW |