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

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

Issue 1376473003: Notify NQE of TCP RTT values (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added throttle on TCP socket notifications (with tests) 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/websocket.cc
diff --git a/chrome/test/chromedriver/net/websocket.cc b/chrome/test/chromedriver/net/websocket.cc
index a7ab4cbf7bcb44327a07a485372c02e9e90618c3..1b586cca14a97eb1abbfabddcba5337130a92232 100644
--- a/chrome/test/chromedriver/net/websocket.cc
+++ b/chrome/test/chromedriver/net/websocket.cc
@@ -80,7 +80,7 @@ void WebSocket::Connect(const net::CompletionCallback& callback) {
}
net::NetLog::Source source;
- socket_.reset(new net::TCPClientSocket(addresses, NULL, source));
+ socket_.reset(new net::TCPClientSocket(addresses, NULL, NULL, source));
state_ = CONNECTING;
connect_callback_ = callback;

Powered by Google App Engine
This is Rietveld 408576698