| OLD | NEW | 
|---|
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be | 
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. | 
| 4 | 4 | 
| 5 #include "device/usb/mock_usb_device.h" | 5 #include "device/usb/mock_usb_device.h" | 
| 6 | 6 | 
| 7 #include "base/strings/utf_string_conversions.h" | 7 #include "base/strings/utf_string_conversions.h" | 
| 8 | 8 | 
| 9 namespace device { | 9 namespace device { | 
| 10 | 10 | 
| 11 MockUsbDevice::MockUsbDevice(uint16 vendor_id, uint16 product_id) | 11 MockUsbDevice::MockUsbDevice(uint16 vendor_id, uint16 product_id) | 
| 12     : MockUsbDevice(vendor_id, product_id, "", "", "") { | 12     : MockUsbDevice(vendor_id, product_id, "", "", "") { | 
| 13 } | 13 } | 
| 14 | 14 | 
| 15 MockUsbDevice::MockUsbDevice(uint16 vendor_id, | 15 MockUsbDevice::MockUsbDevice(uint16 vendor_id, | 
| 16                              uint16 product_id, | 16                              uint16 product_id, | 
| 17                              const std::string& manufacturer_string, | 17                              const std::string& manufacturer_string, | 
| 18                              const std::string& product_string, | 18                              const std::string& product_string, | 
| 19                              const std::string& serial_number) | 19                              const std::string& serial_number) | 
| 20     : UsbDevice(vendor_id, | 20     : UsbDevice(vendor_id, | 
| 21                 product_id, | 21                 product_id, | 
| 22                 base::UTF8ToUTF16(manufacturer_string), | 22                 base::UTF8ToUTF16(manufacturer_string), | 
| 23                 base::UTF8ToUTF16(product_string), | 23                 base::UTF8ToUTF16(product_string), | 
| 24                 base::UTF8ToUTF16(serial_number)) { | 24                 base::UTF8ToUTF16(serial_number)) { | 
| 25 } | 25 } | 
| 26 | 26 | 
|  | 27 MockUsbDevice::MockUsbDevice(uint16 vendor_id, | 
|  | 28                              uint16 product_id, | 
|  | 29                              const std::string& manufacturer_string, | 
|  | 30                              const std::string& product_string, | 
|  | 31                              const std::string& serial_number, | 
|  | 32                              const GURL& webusb_landing_page) | 
|  | 33     : UsbDevice(vendor_id, | 
|  | 34                 product_id, | 
|  | 35                 base::UTF8ToUTF16(manufacturer_string), | 
|  | 36                 base::UTF8ToUTF16(product_string), | 
|  | 37                 base::UTF8ToUTF16(serial_number)) { | 
|  | 38   webusb_landing_page_ = webusb_landing_page; | 
|  | 39 } | 
|  | 40 | 
| 27 MockUsbDevice::~MockUsbDevice() { | 41 MockUsbDevice::~MockUsbDevice() { | 
| 28 } | 42 } | 
| 29 | 43 | 
| 30 }  // namespace device | 44 }  // namespace device | 
| OLD | NEW | 
|---|