| Index: device/usb/usb_device_handle_impl.h
|
| diff --git a/device/usb/usb_device_handle_impl.h b/device/usb/usb_device_handle_impl.h
|
| index 0cb2311e6febb2d771bb97916e00af9c2d67cb54..ed722bbdee941309c1f2ba82e4be909099272f94 100644
|
| --- a/device/usb/usb_device_handle_impl.h
|
| +++ b/device/usb/usb_device_handle_impl.h
|
| @@ -32,8 +32,8 @@ class IOBuffer;
|
| namespace device {
|
|
|
| struct EndpointMapValue {
|
| - int interface_number;
|
| - UsbTransferType transfer_type;
|
| + const UsbInterfaceDescriptor* interface;
|
| + const UsbEndpointDescriptor* endpoint;
|
| };
|
|
|
| class UsbContext;
|
| @@ -91,8 +91,8 @@ class UsbDeviceHandleImpl : public UsbDeviceHandle {
|
| size_t length,
|
| unsigned int timeout,
|
| const TransferCallback& callback) override;
|
| - bool FindInterfaceByEndpoint(uint8_t endpoint_address,
|
| - uint8_t* interface_number) override;
|
| + const UsbInterfaceDescriptor* FindInterfaceByEndpoint(
|
| + uint8_t endpoint_address) override;
|
|
|
| protected:
|
| friend class UsbDeviceImpl;
|
|
|