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

Unified Diff: device/bluetooth/bluetooth_socket_net.cc

Issue 2333923004: Extracting NetLog inner classes into their own classes. (Closed)
Patch Set: Some nit fixes and better, impl-agnostic naming of net_log_parameters_callback_typedef.h -> net/log… Created 4 years, 2 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 6aed20a1143357eb686f0bf36032db7feed286c5..0be52c8d22594cd949c9b40559ded9cd84095390 100644
--- a/device/bluetooth/bluetooth_socket_net.cc
+++ b/device/bluetooth/bluetooth_socket_net.cc
@@ -19,7 +19,7 @@
#include "device/bluetooth/bluetooth_socket_thread.h"
#include "net/base/io_buffer.h"
#include "net/base/net_errors.h"
-#include "net/log/net_log.h"
+#include "net/log/net_log_source.h"
namespace {
@@ -117,7 +117,7 @@ void BluetoothSocketNet::ResetData() {
}
void BluetoothSocketNet::ResetTCPSocket() {
- tcp_socket_.reset(new net::TCPSocket(NULL, NULL, net::NetLog::Source()));
+ tcp_socket_.reset(new net::TCPSocket(NULL, NULL, net::NetLogSource()));
}
void BluetoothSocketNet::SetTCPSocket(

Powered by Google App Engine
This is Rietveld 408576698