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

Unified Diff: net/server/web_socket.h

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 | « net/server/http_server.cc ('k') | net/server/web_socket.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/server/web_socket.h
diff --git a/net/server/web_socket.h b/net/server/web_socket.h
index 935798a5698f5c07a6e636748875cb105a6e2b65..5a13fdc54bb6d0c54d6a0387cdcaadfeb5f69d2a 100644
--- a/net/server/web_socket.h
+++ b/net/server/web_socket.h
@@ -29,8 +29,7 @@ class WebSocket final {
static WebSocket* CreateWebSocket(HttpServer* server,
HttpConnection* connection,
- const HttpServerRequestInfo& request,
- size_t* pos);
+ const HttpServerRequestInfo& request);
void Accept(const HttpServerRequestInfo& request);
ParseResult Read(std::string* message);
@@ -40,8 +39,7 @@ class WebSocket final {
private:
WebSocket(HttpServer* server,
HttpConnection* connection,
- const HttpServerRequestInfo& request,
- size_t* pos);
+ const HttpServerRequestInfo& request);
HttpServer* const server_;
HttpConnection* const connection_;
« no previous file with comments | « net/server/http_server.cc ('k') | net/server/web_socket.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698