| 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();
|
| }
|
|
|
|
|