| Index: device/bluetooth/bluetooth_device_chromeos.cc
|
| diff --git a/device/bluetooth/bluetooth_device_chromeos.cc b/device/bluetooth/bluetooth_device_chromeos.cc
|
| index 2045a1edb218e201775ef5d53538ce5bb6839d13..de46e92709fce5fec3cd2b598d6ac182bca3a457 100644
|
| --- a/device/bluetooth/bluetooth_device_chromeos.cc
|
| +++ b/device/bluetooth/bluetooth_device_chromeos.cc
|
| @@ -442,13 +442,8 @@ void BluetoothDeviceChromeOS::ConnectToService(
|
| << uuid.canonical_value();
|
| scoped_refptr<BluetoothSocketChromeOS> socket =
|
| BluetoothSocketChromeOS::CreateBluetoothSocket(
|
| - ui_task_runner_,
|
| - socket_thread_,
|
| - NULL,
|
| - net::NetLog::Source());
|
| - socket->Connect(this, uuid,
|
| - base::Bind(callback, socket),
|
| - error_callback);
|
| + ui_task_runner_, socket_thread_);
|
| + socket->Connect(this, uuid, base::Bind(callback, socket), error_callback);
|
| }
|
|
|
| void BluetoothDeviceChromeOS::CreateGattConnection(
|
|
|