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

Unified Diff: chrome/test/chromedriver/net/adb_client_socket.cc

Issue 1376473003: Notify NQE of TCP RTT values (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Reorder initialization in constructor Created 4 years, 8 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: chrome/test/chromedriver/net/adb_client_socket.cc
diff --git a/chrome/test/chromedriver/net/adb_client_socket.cc b/chrome/test/chromedriver/net/adb_client_socket.cc
index 73ec141d95a6a6cfa8719daa8d1f4c697d27deee..0a398acf8d3cdc0928d17bb95e6c203529058ffc 100644
--- a/chrome/test/chromedriver/net/adb_client_socket.cc
+++ b/chrome/test/chromedriver/net/adb_client_socket.cc
@@ -366,7 +366,7 @@ AdbClientSocket::~AdbClientSocket() {
void AdbClientSocket::Connect(const net::CompletionCallback& callback) {
net::AddressList address_list = net::AddressList::CreateFromIPAddress(
net::IPAddress::IPv4Localhost(), port_);
- socket_.reset(new net::TCPClientSocket(address_list, NULL,
+ socket_.reset(new net::TCPClientSocket(address_list, NULL, NULL,
net::NetLog::Source()));
int result = socket_->Connect(callback);
if (result != net::ERR_IO_PENDING)
« no previous file with comments | « chrome/browser/extensions/api/socket/tls_socket_unittest.cc ('k') | chrome/test/chromedriver/net/websocket.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698