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

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

Issue 419713002: Support permission_broker for chrome.hid devices. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix hid in app_shell after its move to //extensions Created 6 years, 4 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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/extensions. 5 // This features file defines extension APIs implemented under src/extensions.
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 22 matching lines...) Expand all
33 "whitelist": [ 33 "whitelist": [
34 "2FC374607C2DF285634B67C64A2E356C607091C3", // Quickoffice 34 "2FC374607C2DF285634B67C64A2E356C607091C3", // Quickoffice
35 "3727DD3E564B6055387425027AD74C58784ACC15", // Quickoffice internal 35 "3727DD3E564B6055387425027AD74C58784ACC15", // Quickoffice internal
36 "12E618C3C6E97495AAECF2AC12DEB082353241C6" // QO component extension 36 "12E618C3C6E97495AAECF2AC12DEB082353241C6" // QO component extension
37 ] 37 ]
38 }], 38 }],
39 "dns": { 39 "dns": {
40 "dependencies": ["permission:dns"], 40 "dependencies": ["permission:dns"],
41 "contexts": ["blessed_extension"] 41 "contexts": ["blessed_extension"]
42 }, 42 },
43 "hid": {
44 "dependencies": ["permission:hid"],
45 "contexts": ["blessed_extension"]
46 },
43 "power": { 47 "power": {
44 "dependencies": ["permission:power"], 48 "dependencies": ["permission:power"],
45 "contexts": ["blessed_extension"] 49 "contexts": ["blessed_extension"]
46 }, 50 },
47 "runtime": { 51 "runtime": {
48 "channel": "stable", 52 "channel": "stable",
49 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], 53 "extension_types": ["extension", "legacy_packaged_app", "platform_app"],
50 "contexts": ["blessed_extension"] 54 "contexts": ["blessed_extension"]
51 }, 55 },
52 "runtime.getManifest": { 56 "runtime.getManifest": {
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 "types.private": { 138 "types.private": {
135 "channel": "dev", 139 "channel": "dev",
136 "extension_types": ["extension"], 140 "extension_types": ["extension"],
137 "location": "component" 141 "location": "component"
138 }, 142 },
139 "usb": { 143 "usb": {
140 "dependencies": ["permission:usb"], 144 "dependencies": ["permission:usb"],
141 "contexts": ["blessed_extension"] 145 "contexts": ["blessed_extension"]
142 } 146 }
143 } 147 }
OLDNEW
« no previous file with comments | « extensions/browser/api/hid/hid_device_manager.cc ('k') | extensions/common/api/_permission_features.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698