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

Unified Diff: extensions/test/data/api_test/hid/api/manifest.json

Issue 690473002: Add API tests for the chrome.hid API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « extensions/test/data/api_test/hid/api/background.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/test/data/api_test/hid/api/manifest.json
diff --git a/extensions/test/data/api_test/hid/api/manifest.json b/extensions/test/data/api_test/hid/api/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..e17391b5b0489dcc45b36e70f2e7272f73f4efe5
--- /dev/null
+++ b/extensions/test/data/api_test/hid/api/manifest.json
@@ -0,0 +1,15 @@
+{
+ "name": "chrome.hid",
+ "version": "0.1",
+ "description": "end-to-end browser tests for chrome.hid API",
+ "app": {
+ "background": {
+ "scripts": ["background.js"]
+ }
+ },
+ "permissions": [
+ "hid",
+ // This is a test device emulated by the mocks enabled for the test.
+ { "usbDevices": [{ "vendorId": 6353, "productId": 22768 }]}
+ ]
+}
« no previous file with comments | « extensions/test/data/api_test/hid/api/background.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698