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

Unified Diff: blimp/net/tcp_client_transport.cc

Issue 1376473003: Notify NQE of TCP RTT values (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased, addressed sleevi comments Created 4 years, 9 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: blimp/net/tcp_client_transport.cc
diff --git a/blimp/net/tcp_client_transport.cc b/blimp/net/tcp_client_transport.cc
index 6a6cc5066d7966f5fde1f2a64d4e0e25a7147a1d..a70182fd5aa180641604e13fe6daceafef1c1ee6 100644
--- a/blimp/net/tcp_client_transport.cc
+++ b/blimp/net/tcp_client_transport.cc
@@ -35,7 +35,7 @@ void TCPClientTransport::Connect(const net::CompletionCallback& callback) {
connect_callback_ = callback;
socket_ = socket_factory_->CreateTransportClientSocket(
- net::AddressList(ip_endpoint_), net_log_, net::NetLog::Source());
+ net::AddressList(ip_endpoint_), nullptr, net_log_, net::NetLog::Source());
net::CompletionCallback completion_callback = base::Bind(
&TCPClientTransport::OnTCPConnectComplete, base::Unretained(this));

Powered by Google App Engine
This is Rietveld 408576698