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

Unified Diff: device/usb/usb_device_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_handle_impl.h ('k') | device/usb/usb_service_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/usb/usb_device_impl.h
diff --git a/device/usb/usb_device_impl.h b/device/usb/usb_device_impl.h
index 5f5228bf0a0ea6f0c8e5215e8748143e97d8af61..9a1494724d9f3ee9ce34082e044419c4eb555878 100644
--- a/device/usb/usb_device_impl.h
+++ b/device/usb/usb_device_impl.h
@@ -34,14 +34,14 @@ class UsbDeviceImpl : public UsbDevice {
#if defined(OS_CHROMEOS)
virtual void RequestUsbAccess(
int interface_id,
- const base::Callback<void(bool success)>& callback) OVERRIDE;
+ const base::Callback<void(bool success)>& callback) override;
#endif // OS_CHROMEOS
- virtual scoped_refptr<UsbDeviceHandle> Open() OVERRIDE;
- virtual bool Close(scoped_refptr<UsbDeviceHandle> handle) OVERRIDE;
- virtual const UsbConfigDescriptor& GetConfiguration() OVERRIDE;
- virtual bool GetManufacturer(base::string16* manufacturer) OVERRIDE;
- virtual bool GetProduct(base::string16* product) OVERRIDE;
- virtual bool GetSerialNumber(base::string16* serial_number) OVERRIDE;
+ virtual scoped_refptr<UsbDeviceHandle> Open() override;
+ virtual bool Close(scoped_refptr<UsbDeviceHandle> handle) override;
+ virtual const UsbConfigDescriptor& GetConfiguration() override;
+ virtual bool GetManufacturer(base::string16* manufacturer) override;
+ virtual bool GetProduct(base::string16* product) override;
+ virtual bool GetSerialNumber(base::string16* serial_number) override;
protected:
friend class UsbServiceImpl;
« no previous file with comments | « device/usb/usb_device_handle_impl.h ('k') | device/usb/usb_service_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698