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

Unified Diff: net/websockets/websocket_basic_stream_test.cc

Issue 1580903002: Convert ignore_limits from a SocketParam to a socket request argument. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Missed one Created 4 years, 11 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/websockets/websocket_basic_stream_test.cc
diff --git a/net/websockets/websocket_basic_stream_test.cc b/net/websockets/websocket_basic_stream_test.cc
index d7796d3886cf67734a26e1190afad2c2bf3946a7..bf3fea63a7e5e1a3fad6132acabbc9da344c461b 100644
--- a/net/websockets/websocket_basic_stream_test.cc
+++ b/net/websockets/websocket_basic_stream_test.cc
@@ -128,12 +128,9 @@ class WebSocketBasicStreamSocketTest : public WebSocketBasicStreamTest {
scoped_ptr<ClientSocketHandle> transport_socket(new ClientSocketHandle);
scoped_refptr<MockTransportSocketParams> params;
- transport_socket->Init("a",
- params,
- MEDIUM,
- CompletionCallback(),
- &pool_,
- bound_net_log_.bound());
+ transport_socket->Init(
+ "a", params, MEDIUM, ClientSocketPool::IgnoreLimits::DISABLED,
+ CompletionCallback(), &pool_, bound_net_log_.bound());
return transport_socket;
}

Powered by Google App Engine
This is Rietveld 408576698