| 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 |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 product_id, | 54 product_id, |
| 55 manufacturer_string, | 55 manufacturer_string, |
| 56 product_string, | 56 product_string, |
| 57 serial_number) { | 57 serial_number) { |
| 58 configurations_ = configurations; | 58 configurations_ = configurations; |
| 59 } | 59 } |
| 60 | 60 |
| 61 MockUsbDevice::~MockUsbDevice() { | 61 MockUsbDevice::~MockUsbDevice() { |
| 62 } | 62 } |
| 63 | 63 |
| 64 void MockUsbDevice::NotifyDeviceRemoved() { |
| 65 UsbDevice::NotifyDeviceRemoved(); |
| 66 } |
| 67 |
| 64 } // namespace device | 68 } // namespace device |
| OLD | NEW |