diff options
Diffstat (limited to 'net/socket/tcp_server_socket_libevent.h')
-rw-r--r-- | net/socket/tcp_server_socket_libevent.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/net/socket/tcp_server_socket_libevent.h b/net/socket/tcp_server_socket_libevent.h index df846b2..1325d06 100644 --- a/net/socket/tcp_server_socket_libevent.h +++ b/net/socket/tcp_server_socket_libevent.h @@ -26,14 +26,14 @@ class NET_EXPORT_PRIVATE TCPServerSocketLibevent virtual ~TCPServerSocketLibevent(); // net::ServerSocket implementation. - virtual int Listen(const net::IPEndPoint& address, int backlog); - virtual int GetLocalAddress(IPEndPoint* address) const; + virtual int Listen(const net::IPEndPoint& address, int backlog) OVERRIDE; + virtual int GetLocalAddress(IPEndPoint* address) const OVERRIDE; virtual int Accept(scoped_ptr<StreamSocket>* socket, - OldCompletionCallback* callback); + OldCompletionCallback* callback) OVERRIDE; // MessageLoopForIO::Watcher implementation. - virtual void OnFileCanReadWithoutBlocking(int fd); - virtual void OnFileCanWriteWithoutBlocking(int fd); + virtual void OnFileCanReadWithoutBlocking(int fd) OVERRIDE; + virtual void OnFileCanWriteWithoutBlocking(int fd) OVERRIDE; private: int AcceptInternal(scoped_ptr<StreamSocket>* socket); |