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

Unified Diff: extensions/test/data/api_test/printer_provider/usb_printers/manifest.json

Issue 1148383002: Add onGetUsbPrinterInfoRequested event to printerProvider API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Switch away from NOTREACHED() and document API expectations. Created 5 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: extensions/test/data/api_test/printer_provider/usb_printers/manifest.json
diff --git a/extensions/test/data/api_test/printer_provider/usb_printers/manifest.json b/extensions/test/data/api_test/printer_provider/usb_printers/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..61c495969e1a670d3e8eddc14ab8a56a30ac65cc
--- /dev/null
+++ b/extensions/test/data/api_test/printer_provider/usb_printers/manifest.json
@@ -0,0 +1,20 @@
+{
+ "name": "Test USB printer provider",
+ "description": "Test extension for chrome.printerProvider.onUsbAccessGranted event",
+ "manifest_version": 2,
+ "version": "0.1",
+ "app": {
+ "background": {
+ "scripts": ["test.js"]
+ }
+ },
+ "permissions": [
+ "printerProvider",
+ "usb"
+ ],
+ "usb_printers": {
+ "filters": [
+ { "vendorId": 0, "productId": 0 }
+ ]
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698