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

Unified Diff: net/tools/fetch/http_listen_socket.h

Issue 8568021: Add OVERRIDE to net/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: net only 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
« no previous file with comments | « net/spdy/spdy_websocket_stream.h ('k') | net/tools/fetch/http_session.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>;
« no previous file with comments | « net/spdy/spdy_websocket_stream.h ('k') | net/tools/fetch/http_session.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698