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

Unified Diff: chrome/test/data/extensions/api_test/usb_manual/list_interfaces/manifest.json

Issue 12471013: Add chrome.usb.listInterfaces API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase of PS10 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_manual/list_interfaces/manifest.json
diff --git a/chrome/test/data/extensions/api_test/usb_manual/list_interfaces/manifest.json b/chrome/test/data/extensions/api_test/usb_manual/list_interfaces/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..092357da2b7aeb56a3e72272a104d98aa22693d3
--- /dev/null
+++ b/chrome/test/data/extensions/api_test/usb_manual/list_interfaces/manifest.json
@@ -0,0 +1,17 @@
+{
+ "name": "USB Manual List Interface",
+ "version": "0.1",
+ "app": {
+ "background": {
+ "scripts": ["test.js"]
+ }
+ },
+ "permissions": [
+ "usb"
+ ],
+ "optional_permissions": [
+ {"usbDevices": [
+ {"vendorId": 6353, "productId": 20194}
+ ]}
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698