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

Side by Side Diff: third_party/WebKit/LayoutTests/usb/resources/fake-devices.js

Issue 1472693004: [Do not commit] Sample USB layout tests with Mojo service mocks (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@usb-testing-4
Patch Set: rebase Created 4 years, 10 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
OLDNEW
(Empty)
1 'use strict';
2
3 let FAKE_PRINTER = {
4 guid: 'CD9FA048-FC9B-7A71-DBFC-FD44B78D6397',
5 usb_version_major: 2,
6 usb_version_minor: 0,
7 usb_version_subminor: 0,
8 class_code: 7,
9 subclass_code: 1,
10 protocol_code: 2,
11 vendor_id: 0x18d1,
12 product_id: 0xf00d,
13 device_version_major: 1,
14 device_version_minor: 2,
15 device_version_subminor: 3,
16 manufacturer_name: 'Google, Inc.',
17 product_name: 'The amazing imaginary printer',
18 serial_number: '4',
19 configurations: [],
20 webusb_allowed_origins: { origins: [], configurations: [] },
21 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698