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

Unified Diff: net/server/http_server.cc

Issue 1334113003: Remove unused constructor parameter from net::WebSocket. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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 | « no previous file | net/server/web_socket.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/server/http_server.cc
diff --git a/net/server/http_server.cc b/net/server/http_server.cc
index dff0e6096deafc409f8fd90ac54a01637d11bc75..23528ccaac79463a64e151436bdd76899f38d106 100644
--- a/net/server/http_server.cc
+++ b/net/server/http_server.cc
@@ -237,7 +237,7 @@ int HttpServer::HandleReadResult(HttpConnection* connection, int rv) {
if (request.HasHeaderValue("connection", "upgrade")) {
scoped_ptr<WebSocket> websocket(
- WebSocket::CreateWebSocket(this, connection, request, &pos));
+ WebSocket::CreateWebSocket(this, connection, request));
if (!websocket) // Not enough data was received.
break;
connection->SetWebSocket(websocket.Pass());
« no previous file with comments | « no previous file | net/server/web_socket.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698