| Index: net/socket/tcp_server_socket_libevent.h
|
| diff --git a/net/socket/tcp_server_socket_libevent.h b/net/socket/tcp_server_socket_libevent.h
|
| index df846b287f1c8909a90dc288e7a978acfbfd99d9..1325d06026b5997f869b09c8108e8418ac3d128e 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);
|
|
|