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

Unified Diff: device/usb/usb_device_handle_impl.h

Issue 628873002: replace OVERRIDE and FINAL with override and final in device/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « device/usb/usb_device_filter_unittest.cc ('k') | device/usb/usb_device_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 effb9bae01944ce1e40eecd9682ea617874d6055..b92f779cab9334b970c91c1ae1d097cb0e08964f 100644
--- a/device/usb/usb_device_handle_impl.h
+++ b/device/usb/usb_device_handle_impl.h
@@ -33,15 +33,15 @@ typedef libusb_transfer* PlatformUsbTransferHandle;
// UsbDeviceHandle class provides basic I/O related functionalities.
class UsbDeviceHandleImpl : public UsbDeviceHandle {
public:
- virtual scoped_refptr<UsbDevice> GetDevice() const OVERRIDE;
- virtual void Close() OVERRIDE;
- virtual bool ClaimInterface(int interface_number) OVERRIDE;
- virtual bool ReleaseInterface(int interface_number) OVERRIDE;
+ virtual scoped_refptr<UsbDevice> GetDevice() const override;
+ virtual void Close() override;
+ virtual bool ClaimInterface(int interface_number) override;
+ virtual bool ReleaseInterface(int interface_number) override;
virtual bool SetInterfaceAlternateSetting(int interface_number,
- int alternate_setting) OVERRIDE;
- virtual bool ResetDevice() OVERRIDE;
+ int alternate_setting) override;
+ virtual bool ResetDevice() override;
virtual bool GetStringDescriptor(uint8 string_id,
- base::string16* string) OVERRIDE;
+ base::string16* string) override;
virtual void ControlTransfer(UsbEndpointDirection direction,
TransferRequestType request_type,
@@ -52,21 +52,21 @@ class UsbDeviceHandleImpl : public UsbDeviceHandle {
net::IOBuffer* buffer,
size_t length,
unsigned int timeout,
- const UsbTransferCallback& callback) OVERRIDE;
+ const UsbTransferCallback& callback) override;
virtual void BulkTransfer(UsbEndpointDirection direction,
uint8 endpoint,
net::IOBuffer* buffer,
size_t length,
unsigned int timeout,
- const UsbTransferCallback& callback) OVERRIDE;
+ const UsbTransferCallback& callback) override;
virtual void InterruptTransfer(UsbEndpointDirection direction,
uint8 endpoint,
net::IOBuffer* buffer,
size_t length,
unsigned int timeout,
- const UsbTransferCallback& callback) OVERRIDE;
+ const UsbTransferCallback& callback) override;
virtual void IsochronousTransfer(
UsbEndpointDirection direction,
@@ -76,7 +76,7 @@ class UsbDeviceHandleImpl : public UsbDeviceHandle {
unsigned int packets,
unsigned int packet_length,
unsigned int timeout,
- const UsbTransferCallback& callback) OVERRIDE;
+ const UsbTransferCallback& callback) override;
PlatformUsbDeviceHandle handle() const { return handle_; }
« no previous file with comments | « device/usb/usb_device_filter_unittest.cc ('k') | device/usb/usb_device_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698