| Index: net/udp/udp_socket_libevent.h
|
| diff --git a/net/udp/udp_socket_libevent.h b/net/udp/udp_socket_libevent.h
|
| index abc2dd5c6f6490c0b078fa9636087c262e35101c..1b823c76465d4c39f8e1574467fafc5284c8fc7a 100644
|
| --- a/net/udp/udp_socket_libevent.h
|
| +++ b/net/udp/udp_socket_libevent.h
|
| @@ -113,12 +113,12 @@ class UDPSocketLibevent : public base::NonThreadSafe {
|
|
|
| // MessageLoopForIO::Watcher methods
|
|
|
| - virtual void OnFileCanReadWithoutBlocking(int /* fd */) {
|
| + virtual void OnFileCanReadWithoutBlocking(int /* fd */) OVERRIDE {
|
| if (socket_->read_callback_)
|
| socket_->DidCompleteRead();
|
| }
|
|
|
| - virtual void OnFileCanWriteWithoutBlocking(int /* fd */) {}
|
| + virtual void OnFileCanWriteWithoutBlocking(int /* fd */) OVERRIDE {}
|
|
|
| private:
|
| UDPSocketLibevent* const socket_;
|
| @@ -132,9 +132,9 @@ class UDPSocketLibevent : public base::NonThreadSafe {
|
|
|
| // MessageLoopForIO::Watcher methods
|
|
|
| - virtual void OnFileCanReadWithoutBlocking(int /* fd */) {}
|
| + virtual void OnFileCanReadWithoutBlocking(int /* fd */) OVERRIDE {}
|
|
|
| - virtual void OnFileCanWriteWithoutBlocking(int /* fd */) {
|
| + virtual void OnFileCanWriteWithoutBlocking(int /* fd */) OVERRIDE {
|
| if (socket_->write_callback_)
|
| socket_->DidCompleteWrite();
|
| }
|
|
|