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

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

Issue 301733006: Zoom Extension API (chrome) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix javascript test function signature. Created 6 years, 5 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 // 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 656 matching lines...) Expand 10 before | Expand all | Expand 10 after
667 }, 667 },
668 "tabCapture": { 668 "tabCapture": {
669 "dependencies": ["permission:tabCapture"], 669 "dependencies": ["permission:tabCapture"],
670 "contexts": ["blessed_extension"] 670 "contexts": ["blessed_extension"]
671 }, 671 },
672 "tabs": { 672 "tabs": {
673 "channel": "stable", 673 "channel": "stable",
674 "extension_types": ["extension", "legacy_packaged_app"], 674 "extension_types": ["extension", "legacy_packaged_app"],
675 "contexts": ["blessed_extension"] 675 "contexts": ["blessed_extension"]
676 }, 676 },
677 "tabs.setZoom": {
678 "channel": "dev"
679 },
680 "tabs.getZoom": {
681 "channel": "dev"
682 },
683 "tabs.setZoomSettings": {
684 "channel": "dev"
685 },
686 "tabs.getZoomSettings": {
687 "channel": "dev"
688 },
677 "terminalPrivate": { 689 "terminalPrivate": {
678 "dependencies": ["permission:terminalPrivate"], 690 "dependencies": ["permission:terminalPrivate"],
679 "contexts": ["blessed_extension"] 691 "contexts": ["blessed_extension"]
680 }, 692 },
681 "topSites": { 693 "topSites": {
682 "dependencies": ["permission:topSites"], 694 "dependencies": ["permission:topSites"],
683 "contexts": ["blessed_extension"] 695 "contexts": ["blessed_extension"]
684 }, 696 },
685 "tts": { 697 "tts": {
686 "dependencies": ["permission:tts"], 698 "dependencies": ["permission:tts"],
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
750 "internal": true, 762 "internal": true,
751 "channel": "stable", 763 "channel": "stable",
752 "dependencies": ["permission:webview"], 764 "dependencies": ["permission:webview"],
753 "contexts": ["blessed_extension"] 765 "contexts": ["blessed_extension"]
754 }, 766 },
755 "windows": { 767 "windows": {
756 "dependencies": ["api:tabs"], 768 "dependencies": ["api:tabs"],
757 "contexts": ["blessed_extension"] 769 "contexts": ["blessed_extension"]
758 } 770 }
759 } 771 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698