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

Unified Diff: device/bluetooth/bluetooth_adapter_win.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_adapter_win.cc
diff --git a/device/bluetooth/bluetooth_adapter_win.cc b/device/bluetooth/bluetooth_adapter_win.cc
index 86d4b2b1f763b85b75c3cffc01b7404332175efe..edf5c98bbbe09846718cc49e596071df6cacc185 100644
--- a/device/bluetooth/bluetooth_adapter_win.cc
+++ b/device/bluetooth/bluetooth_adapter_win.cc
@@ -20,6 +20,7 @@
#include "device/bluetooth/bluetooth_socket_win.h"
#include "device/bluetooth/bluetooth_task_manager_win.h"
#include "device/bluetooth/bluetooth_uuid.h"
+#include "net/log/net_log_source.h"
namespace device {
@@ -282,7 +283,7 @@ void BluetoothAdapterWin::DevicesPolled(
if (added_devices.find(device_state->address) != added_devices.end()) {
BluetoothDeviceWin* device_win =
new BluetoothDeviceWin(this, *device_state, ui_task_runner_,
- socket_thread_, NULL, net::NetLog::Source());
+ socket_thread_, NULL, net::NetLogSource());
devices_.set(device_state->address,
std::unique_ptr<BluetoothDevice>(device_win));
FOR_EACH_OBSERVER(BluetoothAdapter::Observer,

Powered by Google App Engine
This is Rietveld 408576698