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

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

Issue 225093019: Zoom Extension API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed comments. 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
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 685 matching lines...) Expand 10 before | Expand all | Expand 10 after
696 }, 696 },
697 "tabCapture": { 697 "tabCapture": {
698 "dependencies": ["permission:tabCapture"], 698 "dependencies": ["permission:tabCapture"],
699 "contexts": ["blessed_extension"] 699 "contexts": ["blessed_extension"]
700 }, 700 },
701 "tabs": { 701 "tabs": {
702 "channel": "stable", 702 "channel": "stable",
703 "extension_types": ["extension", "legacy_packaged_app"], 703 "extension_types": ["extension", "legacy_packaged_app"],
704 "contexts": ["blessed_extension"] 704 "contexts": ["blessed_extension"]
705 }, 705 },
706 "tabs.setZoom": {
707 "channel": "dev"
708 },
709 "tabs.getZoom": {
710 "channel": "dev"
711 },
712 "tabs.setZoomSettings": {
713 "channel": "dev"
714 },
715 "tabs.getZoomSettings": {
716 "channel": "dev"
717 },
706 "terminalPrivate": { 718 "terminalPrivate": {
707 "platforms": ["chromeos"], 719 "platforms": ["chromeos"],
708 "dependencies": ["permission:terminalPrivate"], 720 "dependencies": ["permission:terminalPrivate"],
709 "contexts": ["blessed_extension"] 721 "contexts": ["blessed_extension"]
710 }, 722 },
711 "test": { 723 "test": {
712 "internal": true, 724 "internal": true,
713 "channel": "stable", 725 "channel": "stable",
714 "extension_types": "all", 726 "extension_types": "all",
715 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] 727 "contexts": ["blessed_extension", "unblessed_extension", "content_script"]
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
801 "internal": true, 813 "internal": true,
802 "channel": "stable", 814 "channel": "stable",
803 "dependencies": ["permission:webview"], 815 "dependencies": ["permission:webview"],
804 "contexts": ["blessed_extension"] 816 "contexts": ["blessed_extension"]
805 }, 817 },
806 "windows": { 818 "windows": {
807 "dependencies": ["api:tabs"], 819 "dependencies": ["api:tabs"],
808 "contexts": ["blessed_extension"] 820 "contexts": ["blessed_extension"]
809 } 821 }
810 } 822 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698