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

Unified Diff: net/server/http_connection.cc

Issue 10161005: Add DefaultListenSocket. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix build on Windows Created 8 years, 7 months 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/server/http_connection.h ('k') | net/server/http_server.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/server/http_connection.cc
diff --git a/net/server/http_connection.cc b/net/server/http_connection.cc
index 3404c68f1d0fa87753a1828266b54ea4b9da9079..9566dddc04902bcfaa7425127c58a46ed4c92aa4 100644
--- a/net/server/http_connection.cc
+++ b/net/server/http_connection.cc
@@ -6,7 +6,7 @@
#include "base/string_util.h"
#include "base/stringprintf.h"
-#include "net/base/listen_socket.h"
+#include "net/base/stream_listen_socket.h"
#include "net/server/http_server.h"
#include "net/server/web_socket.h"
@@ -62,7 +62,7 @@ void HttpConnection::Send500(const std::string& message) {
message.c_str()));
}
-HttpConnection::HttpConnection(HttpServer* server, ListenSocket* sock)
+HttpConnection::HttpConnection(HttpServer* server, StreamListenSocket* sock)
: server_(server),
socket_(sock) {
id_ = last_id_++;
« no previous file with comments | « net/server/http_connection.h ('k') | net/server/http_server.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698