| Index: net/tools/fetch/http_listen_socket.h
|
| diff --git a/net/tools/fetch/http_listen_socket.h b/net/tools/fetch/http_listen_socket.h
|
| index 4d20e1df7433785dc8575f2ff806f6f1443f765c..18e3a466ffdb20e636bd27b9c5ad4a5be95b7edb 100644
|
| --- a/net/tools/fetch/http_listen_socket.h
|
| +++ b/net/tools/fetch/http_listen_socket.h
|
| @@ -28,8 +28,8 @@ class HttpListenSocket : public net::ListenSocket,
|
| static HttpListenSocket* Listen(const std::string& ip, int port,
|
| HttpListenSocket::Delegate* delegate);
|
|
|
| - virtual void Listen();
|
| - virtual void Accept();
|
| + virtual void Listen() OVERRIDE;
|
| + virtual void Accept() OVERRIDE;
|
|
|
| // Send a server response.
|
| // TODO(mbelshe): make this capable of non-ascii data.
|
| @@ -37,10 +37,10 @@ class HttpListenSocket : public net::ListenSocket,
|
|
|
| // ListenSocketDelegate
|
| virtual void DidAccept(net::ListenSocket* server,
|
| - net::ListenSocket* connection);
|
| + net::ListenSocket* connection) OVERRIDE;
|
| virtual void DidRead(net::ListenSocket* connection,
|
| - const char* data, int len);
|
| - virtual void DidClose(net::ListenSocket* sock);
|
| + const char* data, int len) OVERRIDE;
|
| + virtual void DidClose(net::ListenSocket* sock) OVERRIDE;
|
|
|
| private:
|
| friend class base::RefCountedThreadSafe<net::ListenSocket>;
|
|
|