| Index: device/bluetooth/bluetooth_socket_bluez.cc
|
| diff --git a/device/bluetooth/bluetooth_socket_bluez.cc b/device/bluetooth/bluetooth_socket_bluez.cc
|
| index df5a0c03b42936b2761fb906451f4f1423e51a15..5a82ef17a4588430261f9e4f245ab1cbb5183cb9 100644
|
| --- a/device/bluetooth/bluetooth_socket_bluez.cc
|
| +++ b/device/bluetooth/bluetooth_socket_bluez.cc
|
| @@ -5,9 +5,9 @@
|
| #include "device/bluetooth/bluetooth_socket_bluez.h"
|
|
|
| #include <stdint.h>
|
| -
|
| #include <queue>
|
| #include <string>
|
| +#include <utility>
|
|
|
| #include "base/bind.h"
|
| #include "base/callback.h"
|
| @@ -368,7 +368,7 @@ void BluetoothSocketBlueZ::NewConnection(
|
| } else {
|
| linked_ptr<ConnectionRequest> request(new ConnectionRequest());
|
| request->device_path = device_path;
|
| - request->fd = fd.Pass();
|
| + request->fd = std::move(fd);
|
| request->options = options;
|
| request->callback = callback;
|
|
|
|
|