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

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

Issue 268713013: Move chrome.usb to //extensions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 7 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
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 709 matching lines...) Expand 10 before | Expand all | Expand 10 after
720 "types": { 720 "types": {
721 "channel": "stable", 721 "channel": "stable",
722 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], 722 "extension_types": ["extension", "legacy_packaged_app", "platform_app"],
723 "contexts": ["blessed_extension"] 723 "contexts": ["blessed_extension"]
724 }, 724 },
725 "types.private": { 725 "types.private": {
726 "channel": "dev", 726 "channel": "dev",
727 "extension_types": ["extension"], 727 "extension_types": ["extension"],
728 "location": "component" 728 "location": "component"
729 }, 729 },
730 "usb": {
731 "dependencies": ["permission:usb"],
732 "contexts": ["blessed_extension"]
733 },
734 "virtualKeyboardPrivate": { 730 "virtualKeyboardPrivate": {
735 "platforms": ["chromeos"], 731 "platforms": ["chromeos"],
736 "dependencies": ["permission:virtualKeyboardPrivate"], 732 "dependencies": ["permission:virtualKeyboardPrivate"],
737 "contexts": ["blessed_extension"] 733 "contexts": ["blessed_extension"]
738 }, 734 },
739 "wallpaper": { 735 "wallpaper": {
740 "platforms": ["chromeos"], 736 "platforms": ["chromeos"],
741 "dependencies": ["permission:wallpaper"], 737 "dependencies": ["permission:wallpaper"],
742 "contexts": ["blessed_extension"] 738 "contexts": ["blessed_extension"]
743 }, 739 },
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
792 "internal": true, 788 "internal": true,
793 "channel": "stable", 789 "channel": "stable",
794 "dependencies": ["permission:webview"], 790 "dependencies": ["permission:webview"],
795 "contexts": ["blessed_extension"] 791 "contexts": ["blessed_extension"]
796 }, 792 },
797 "windows": { 793 "windows": {
798 "dependencies": ["api:tabs"], 794 "dependencies": ["api:tabs"],
799 "contexts": ["blessed_extension"] 795 "contexts": ["blessed_extension"]
800 } 796 }
801 } 797 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698