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

Unified Diff: device/test/usb_test_gadget_impl.cc

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/serial/test_serial_io_handler.h ('k') | device/usb/usb_context.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/test/usb_test_gadget_impl.cc
diff --git a/device/test/usb_test_gadget_impl.cc b/device/test/usb_test_gadget_impl.cc
index fa4f3d7a639c051b096c94ce58f5222504e6e86c..e7ae97cfbc42940acb73356e85e51d3e9ec5bbcc 100644
--- a/device/test/usb_test_gadget_impl.cc
+++ b/device/test/usb_test_gadget_impl.cc
@@ -66,12 +66,12 @@ class UsbTestGadgetImpl : public UsbTestGadget {
public:
virtual ~UsbTestGadgetImpl();
- virtual bool Unclaim() OVERRIDE;
- virtual bool Disconnect() OVERRIDE;
- virtual bool Reconnect() OVERRIDE;
- virtual bool SetType(Type type) OVERRIDE;
- virtual UsbDevice* GetDevice() const OVERRIDE;
- virtual std::string GetSerialNumber() const OVERRIDE;
+ virtual bool Unclaim() override;
+ virtual bool Disconnect() override;
+ virtual bool Reconnect() override;
+ virtual bool SetType(Type type) override;
+ virtual UsbDevice* GetDevice() const override;
+ virtual std::string GetSerialNumber() const override;
protected:
UsbTestGadgetImpl();
@@ -99,7 +99,7 @@ class UsbTestGadgetImpl : public UsbTestGadget {
run_loop_.Run();
}
- virtual void OnURLFetchComplete(const net::URLFetcher* source) OVERRIDE {
+ virtual void OnURLFetchComplete(const net::URLFetcher* source) override {
run_loop_.Quit();
}
« no previous file with comments | « device/serial/test_serial_io_handler.h ('k') | device/usb/usb_context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698