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 678 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
689 }, | 689 }, |
690 "tabCapture": { | 690 "tabCapture": { |
691 "dependencies": ["permission:tabCapture"], | 691 "dependencies": ["permission:tabCapture"], |
692 "contexts": ["blessed_extension"] | 692 "contexts": ["blessed_extension"] |
693 }, | 693 }, |
694 "tabs": { | 694 "tabs": { |
695 "channel": "stable", | 695 "channel": "stable", |
696 "extension_types": ["extension", "legacy_packaged_app"], | 696 "extension_types": ["extension", "legacy_packaged_app"], |
697 "contexts": ["blessed_extension"] | 697 "contexts": ["blessed_extension"] |
698 }, | 698 }, |
| 699 "tabs.setZoom": { |
| 700 "channel": "dev" |
| 701 }, |
| 702 "tabs.getZoom": { |
| 703 "channel": "dev" |
| 704 }, |
| 705 "tabs.setZoomSettings": { |
| 706 "channel": "dev" |
| 707 }, |
| 708 "tabs.getZoomSettings": { |
| 709 "channel": "dev" |
| 710 }, |
699 "terminalPrivate": { | 711 "terminalPrivate": { |
700 "platforms": ["chromeos"], | 712 "platforms": ["chromeos"], |
701 "dependencies": ["permission:terminalPrivate"], | 713 "dependencies": ["permission:terminalPrivate"], |
702 "contexts": ["blessed_extension"] | 714 "contexts": ["blessed_extension"] |
703 }, | 715 }, |
704 "topSites": { | 716 "topSites": { |
705 "dependencies": ["permission:topSites"], | 717 "dependencies": ["permission:topSites"], |
706 "contexts": ["blessed_extension"] | 718 "contexts": ["blessed_extension"] |
707 }, | 719 }, |
708 "tts": { | 720 "tts": { |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
774 "internal": true, | 786 "internal": true, |
775 "channel": "stable", | 787 "channel": "stable", |
776 "dependencies": ["permission:webview"], | 788 "dependencies": ["permission:webview"], |
777 "contexts": ["blessed_extension"] | 789 "contexts": ["blessed_extension"] |
778 }, | 790 }, |
779 "windows": { | 791 "windows": { |
780 "dependencies": ["api:tabs"], | 792 "dependencies": ["api:tabs"], |
781 "contexts": ["blessed_extension"] | 793 "contexts": ["blessed_extension"] |
782 } | 794 } |
783 } | 795 } |
OLD | NEW |