Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3851)

Unified Diff: chrome/browser/debugger/devtools_remote_listen_socket.h

Issue 8612007: Add OVERRIDE to chrome/browser/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 {

Powered by Google App Engine
This is Rietveld 408576698