| Index: device/bluetooth/bluetooth_adapter_win.cc
|
| diff --git a/device/bluetooth/bluetooth_adapter_win.cc b/device/bluetooth/bluetooth_adapter_win.cc
|
| index 009a50b237c32585a00e2b724d9245272f1f3f1f..78e7439914bb65e05818b83e18eff03c5c4ec548 100644
|
| --- a/device/bluetooth/bluetooth_adapter_win.cc
|
| +++ b/device/bluetooth/bluetooth_adapter_win.cc
|
| @@ -272,11 +272,8 @@ void BluetoothAdapterWin::DevicesPolled(
|
| BluetoothTaskManagerWin::DeviceState* device_state = (*iter);
|
| if (added_devices.find(device_state->address) != added_devices.end()) {
|
| BluetoothDeviceWin* device_win =
|
| - new BluetoothDeviceWin(*device_state,
|
| - ui_task_runner_,
|
| - socket_thread_,
|
| - NULL,
|
| - net::NetLog::Source());
|
| + new BluetoothDeviceWin(this, *device_state, ui_task_runner_,
|
| + socket_thread_, NULL, net::NetLog::Source());
|
| devices_[device_state->address] = device_win;
|
| FOR_EACH_OBSERVER(BluetoothAdapter::Observer,
|
| observers_,
|
|
|