Index: net/udp/udp_socket_libevent.h |
diff --git a/net/udp/udp_socket_libevent.h b/net/udp/udp_socket_libevent.h |
index 292a42fa80679bfab9a950462d22f84c6ad77042..2ac564debc533752d038b81a9b76312ecf0cc920 100644 |
--- a/net/udp/udp_socket_libevent.h |
+++ b/net/udp/udp_socket_libevent.h |
@@ -179,9 +179,9 @@ class NET_EXPORT UDPSocketLibevent : public base::NonThreadSafe { |
// MessageLoopForIO::Watcher methods |
- virtual void OnFileCanReadWithoutBlocking(int /* fd */) override; |
+ void OnFileCanReadWithoutBlocking(int /* fd */) override; |
- virtual void OnFileCanWriteWithoutBlocking(int /* fd */) override {} |
+ void OnFileCanWriteWithoutBlocking(int /* fd */) override {} |
private: |
UDPSocketLibevent* const socket_; |
@@ -195,9 +195,9 @@ class NET_EXPORT UDPSocketLibevent : public base::NonThreadSafe { |
// MessageLoopForIO::Watcher methods |
- virtual void OnFileCanReadWithoutBlocking(int /* fd */) override {} |
+ void OnFileCanReadWithoutBlocking(int /* fd */) override {} |
- virtual void OnFileCanWriteWithoutBlocking(int /* fd */) override; |
+ void OnFileCanWriteWithoutBlocking(int /* fd */) override; |
private: |
UDPSocketLibevent* const socket_; |