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

Unified Diff: mojo/services/network/tcp_bound_socket_impl.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: mojo/services/network/tcp_bound_socket_impl.cc
diff --git a/mojo/services/network/tcp_bound_socket_impl.cc b/mojo/services/network/tcp_bound_socket_impl.cc
index 1d8669fb86c9a08521b4a6e3ad7247810c8c3f32..7fe865bdfc24863e39f0128c495ae5bf5520b3ab 100644
--- a/mojo/services/network/tcp_bound_socket_impl.cc
+++ b/mojo/services/network/tcp_bound_socket_impl.cc
@@ -26,7 +26,7 @@ TCPBoundSocketImpl::~TCPBoundSocketImpl() {
int TCPBoundSocketImpl::Bind(NetAddressPtr local_address) {
net::IPEndPoint end_point = local_address.To<net::IPEndPoint>();
- socket_.reset(new net::TCPSocket(NULL, net::NetLog::Source()));
+ socket_.reset(new net::TCPSocket(NULL, NULL, net::NetLog::Source()));
int result = socket_->Open(end_point.GetFamily());
if (result != net::OK)
return result;

Powered by Google App Engine
This is Rietveld 408576698