| Index: chrome/browser/devtools/device/usb/android_usb_browsertest.cc
|
| diff --git a/chrome/browser/devtools/device/usb/android_usb_browsertest.cc b/chrome/browser/devtools/device/usb/android_usb_browsertest.cc
|
| index caa99503a1e9c05cb504c073c7e1c235df344883..3029fd67a5a00d1cd557fd5e596060cdd507efac 100644
|
| --- a/chrome/browser/devtools/device/usb/android_usb_browsertest.cc
|
| +++ b/chrome/browser/devtools/device/usb/android_usb_browsertest.cc
|
| @@ -352,18 +352,14 @@
|
| query.buffer, query.size));
|
| }
|
|
|
| - void IsochronousTransferIn(
|
| - uint8_t endpoint_number,
|
| - const std::vector<uint32_t>& packet_lengths,
|
| - unsigned int timeout,
|
| - const IsochronousTransferCallback& callback) override {}
|
| -
|
| - void IsochronousTransferOut(
|
| - uint8_t endpoint_number,
|
| - scoped_refptr<net::IOBuffer> buffer,
|
| - const std::vector<uint32_t>& packet_lengths,
|
| - unsigned int timeout,
|
| - const IsochronousTransferCallback& callback) override {}
|
| + void IsochronousTransfer(UsbEndpointDirection direction,
|
| + uint8_t endpoint,
|
| + scoped_refptr<net::IOBuffer> buffer,
|
| + size_t length,
|
| + unsigned int packets,
|
| + unsigned int packet_length,
|
| + unsigned int timeout,
|
| + const TransferCallback& callback) override {}
|
|
|
| protected:
|
| virtual ~MockUsbDeviceHandle() {}
|
|
|