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

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

Issue 1115213004: Add chrome.hid.getUserSelectedDevices API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased. Created 5 years, 6 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
« no previous file with comments | « extensions/browser/extension_function_histogram_value.h ('k') | extensions/common/api/hid.idl » ('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 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 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 "internal": true, 162 "internal": true,
163 "channel": "trunk", 163 "channel": "trunk",
164 "contexts": "all", 164 "contexts": "all",
165 "matches": ["<all_urls>"] 165 "matches": ["<all_urls>"]
166 } 166 }
167 ], 167 ],
168 "hid": { 168 "hid": {
169 "dependencies": ["permission:hid"], 169 "dependencies": ["permission:hid"],
170 "contexts": ["blessed_extension"] 170 "contexts": ["blessed_extension"]
171 }, 171 },
172 "hid.getUserSelectedDevices": {
173 "contexts": ["blessed_extension"],
174 "channel": "dev",
175 "dependencies": ["permission:hid"]
176 },
172 "idle": { 177 "idle": {
173 "dependencies": ["permission:idle"], 178 "dependencies": ["permission:idle"],
174 "contexts": ["blessed_extension"] 179 "contexts": ["blessed_extension"]
175 }, 180 },
176 "management": [{ 181 "management": [{
177 "dependencies": ["permission:management"], 182 "dependencies": ["permission:management"],
178 "contexts": ["blessed_extension"], 183 "contexts": ["blessed_extension"],
179 "default_parent": true 184 "default_parent": true
180 }, { 185 }, {
181 "channel": "stable", 186 "channel": "stable",
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
431 }, { 436 }, {
432 "channel": "stable", 437 "channel": "stable",
433 "contexts": ["webui"], 438 "contexts": ["webui"],
434 "matches": [ 439 "matches": [
435 "chrome://chrome-signin/*", 440 "chrome://chrome-signin/*",
436 "chrome://media-router/*", 441 "chrome://media-router/*",
437 "chrome://oobe/*" 442 "chrome://oobe/*"
438 ] 443 ]
439 }] 444 }]
440 } 445 }
OLDNEW
« no previous file with comments | « extensions/browser/extension_function_histogram_value.h ('k') | extensions/common/api/hid.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698