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

Unified Diff: net/server/http_listen_socket.h

Issue 5648004: Add the "virtual" keyword on method overrides that are missing it. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Missing file Created 10 years 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/net.gyp ('k') | net/url_request/https_prober.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/server/http_listen_socket.h
diff --git a/net/server/http_listen_socket.h b/net/server/http_listen_socket.h
index 2eae47db89e2a34306bd92bf1ddf8e59812da874..c917eaf82c8b1352369dc721c9269fbf0c287327 100644
--- a/net/server/http_listen_socket.h
+++ b/net/server/http_listen_socket.h
@@ -44,8 +44,8 @@ class HttpListenSocket : public ListenSocket,
void Send404();
void Send500(const std::string& message);
- void Close() { ListenSocket::Close(); }
- void Listen() { ListenSocket::Listen(); }
+ virtual void Close() { ListenSocket::Close(); }
+ virtual void Listen() { ListenSocket::Listen(); }
// ListenSocketDelegate
virtual void DidAccept(ListenSocket* server, ListenSocket* connection);
« no previous file with comments | « net/net.gyp ('k') | net/url_request/https_prober.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698