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

Unified Diff: net/server/http_server.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/http/url_security_manager.h ('k') | net/socket/client_socket_pool_base.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/server/http_server.h
diff --git a/net/server/http_server.h b/net/server/http_server.h
index 1bc24a420128a9cef8ca1d3f49e709e36e201917..589d8875b5b4529bd27dd60e5f89fb126709e988 100644
--- a/net/server/http_server.h
+++ b/net/server/http_server.h
@@ -58,9 +58,11 @@ private:
friend class HttpConnection;
// ListenSocketDelegate
- virtual void DidAccept(ListenSocket* server, ListenSocket* socket);
- virtual void DidRead(ListenSocket* socket, const char* data, int len);
- virtual void DidClose(ListenSocket* socket);
+ virtual void DidAccept(ListenSocket* server, ListenSocket* socket) OVERRIDE;
+ virtual void DidRead(ListenSocket* socket,
+ const char* data,
+ int len) OVERRIDE;
+ virtual void DidClose(ListenSocket* socket) OVERRIDE;
// Expects the raw data to be stored in recv_data_. If parsing is successful,
// will remove the data parsed from recv_data_, leaving only the unused
« no previous file with comments | « net/http/url_security_manager.h ('k') | net/socket/client_socket_pool_base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698