Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Side by Side Diff: chrome/common/extensions/api/_api_features.json

Issue 232773011: Zoom Extension API (work in progress) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Took callbacks, zoom modes, and observer stuff out of content, and reimplemented similar functional… Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/ui/zoom/zoom_observer.h ('k') | chrome/common/extensions/api/tabs.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/zoom/zoom_observer.h ('k') | chrome/common/extensions/api/tabs.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698