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

Unified Diff: device/bluetooth/bluetooth_socket_net.cc

Issue 1376473003: Notify NQE of TCP RTT values (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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: device/bluetooth/bluetooth_socket_net.cc
diff --git a/device/bluetooth/bluetooth_socket_net.cc b/device/bluetooth/bluetooth_socket_net.cc
index b042863b1ff7dd624f1982e02331c07ccb0fec05..8edd64bc95dfccc6b089cce15f93b459bbbea94c 100644
--- a/device/bluetooth/bluetooth_socket_net.cc
+++ b/device/bluetooth/bluetooth_socket_net.cc
@@ -116,7 +116,9 @@ void BluetoothSocketNet::ResetData() {
}
void BluetoothSocketNet::ResetTCPSocket() {
- tcp_socket_.reset(new net::TCPSocket(NULL, net::NetLog::Source()));
+ tcp_socket_.reset(
+ new net::TCPSocket(/*socket_performance_watcher_factory=*/nullptr,
Ryan Sleevi 2015/10/20 00:10:36 Don't do this. We don't generally do it in Chrome.
tbansal1 2016/02/05 19:44:15 Done.
+ nullptr, net::NetLog::Source()));
}
void BluetoothSocketNet::SetTCPSocket(scoped_ptr<net::TCPSocket> tcp_socket) {
« no previous file with comments | « no previous file | net/base/socket_performance_watcher_factory.h » ('j') | net/base/socket_performance_watcher_factory.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698