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

Unified Diff: net/websockets/websocket_basic_stream_test.cc

Issue 2351513002: net: rename BoundNetLog to NetLogWithSource (Closed)
Patch Set: one more fix, content bound_net_log_ Created 4 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
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 54ed6de31706552a9ba2a3b6baef248b1fe021d7..7061e4b581dcd2d25bb3881cfe456e94de56c80a 100644
--- a/net/websockets/websocket_basic_stream_test.cc
+++ b/net/websockets/websocket_basic_stream_test.cc
@@ -134,9 +134,9 @@ class WebSocketBasicStreamSocketTest : public WebSocketBasicStreamTest {
std::unique_ptr<ClientSocketHandle> transport_socket(
new ClientSocketHandle);
scoped_refptr<MockTransportSocketParams> params;
- transport_socket->Init(
- "a", params, MEDIUM, ClientSocketPool::RespectLimits::ENABLED,
- CompletionCallback(), &pool_, bound_net_log_.bound());
+ transport_socket->Init("a", params, MEDIUM,
+ ClientSocketPool::RespectLimits::ENABLED,
+ CompletionCallback(), &pool_, net_log_.bound());
return transport_socket;
}
@@ -169,7 +169,7 @@ class WebSocketBasicStreamSocketTest : public WebSocketBasicStreamTest {
std::unique_ptr<SocketDataProvider> socket_data_;
MockClientSocketFactory factory_;
MockTransportClientSocketPool pool_;
- BoundTestNetLog(bound_net_log_);
+ BoundTestNetLog(net_log_);
std::vector<std::unique_ptr<WebSocketFrame>> frames_;
TestCompletionCallback cb_;
scoped_refptr<GrowableIOBuffer> http_read_buffer_;

Powered by Google App Engine
This is Rietveld 408576698