| Index: chrome/browser/debugger/devtools_remote_listen_socket.h
|
| diff --git a/chrome/browser/debugger/devtools_remote_listen_socket.h b/chrome/browser/debugger/devtools_remote_listen_socket.h
|
| index 40212f4a69cf8c97ada6f4e99b5884780595811b..ec97c8662f31eb5002ed3c7bacf7093d427654ee 100644
|
| --- a/chrome/browser/debugger/devtools_remote_listen_socket.h
|
| +++ b/chrome/browser/debugger/devtools_remote_listen_socket.h
|
| @@ -27,20 +27,20 @@ class DevToolsRemoteListenSocket
|
| DevToolsRemoteListener* message_listener);
|
|
|
| protected:
|
| - virtual void Listen();
|
| - virtual void Accept();
|
| - virtual void Close();
|
| - virtual void SendInternal(const char* bytes, int len);
|
| + virtual void Listen() OVERRIDE;
|
| + virtual void Accept() OVERRIDE;
|
| + virtual void Close() OVERRIDE;
|
| + virtual void SendInternal(const char* bytes, int len) OVERRIDE;
|
|
|
| private:
|
| virtual ~DevToolsRemoteListenSocket();
|
|
|
| // net::ListenSocket::ListenSocketDelegate interface
|
| 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 *connection);
|
| + const char* data, int len) OVERRIDE;
|
| + virtual void DidClose(net::ListenSocket *connection) OVERRIDE;
|
|
|
| // The protocol states while reading socket input
|
| enum State {
|
|
|