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

Unified Diff: chrome/test/data/extensions/api_test/usb/list_interfaces/test.js

Issue 12471013: Add chrome.usb.listInterfaces API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Response to Bei's PS1 comments Created 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/test/data/extensions/api_test/usb/list_interfaces/test.js
diff --git a/chrome/test/data/extensions/api_test/usb/list_interfaces/test.js b/chrome/test/data/extensions/api_test/usb/list_interfaces/test.js
new file mode 100644
index 0000000000000000000000000000000000000000..7234d40ae363406178f0053ffca1c97528c35304
--- /dev/null
+++ b/chrome/test/data/extensions/api_test/usb/list_interfaces/test.js
@@ -0,0 +1,18 @@
+// Copyright (c) 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+var usb = chrome.usb;
+
+var tests = [
+ function listInterfaces() {
+ usb.findDevices({vendorId: 0, productId: 0}, function (devices) {
+ var device = devices[0];
+ usb.listInterfaces(device, function (result) {
+ chrome.test.succeed();
+ });
+ });
+ }
+];
+
+chrome.test.runTests(tests);

Powered by Google App Engine
This is Rietveld 408576698