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

Unified Diff: net/server/http_server.h

Issue 10386048: Decouple DevTools from socket implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address Matt's comments 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
Index: net/server/http_server.h
diff --git a/net/server/http_server.h b/net/server/http_server.h
index aaf5336c66de891539737309f58496994d79373b..011837dcb6aa17a362058bea7fa015b60306dfe1 100644
--- a/net/server/http_server.h
+++ b/net/server/http_server.h
@@ -39,7 +39,8 @@ class HttpServer : public StreamListenSocket::Delegate,
virtual ~Delegate() {}
};
- HttpServer(const std::string& host, int port, HttpServer::Delegate* del);
+ HttpServer(const StreamListenSocketFactory& socket_factory,
+ HttpServer::Delegate* delegate);
void AcceptWebSocket(int connection_id,
const HttpServerRequestInfo& request);

Powered by Google App Engine
This is Rietveld 408576698