| Index: device/bluetooth/dbus/bluetooth_media_endpoint_service_provider.cc
|
| diff --git a/device/bluetooth/dbus/bluetooth_media_endpoint_service_provider.cc b/device/bluetooth/dbus/bluetooth_media_endpoint_service_provider.cc
|
| index 9c7a40815c16fec42f00f6a6666aceae3b42f151..5a0d17fc2adf218b6eba5ec3f366462ec83da07b 100644
|
| --- a/device/bluetooth/dbus/bluetooth_media_endpoint_service_provider.cc
|
| +++ b/device/bluetooth/dbus/bluetooth_media_endpoint_service_provider.cc
|
| @@ -5,6 +5,7 @@
|
| #include "device/bluetooth/dbus/bluetooth_media_endpoint_service_provider.h"
|
|
|
| #include <stddef.h>
|
| +#include <utility>
|
|
|
| #include "base/bind.h"
|
| #include "base/logging.h"
|
| @@ -255,7 +256,7 @@ class DEVICE_BLUETOOTH_EXPORT BluetoothMediaEndpointServiceProviderImpl
|
| } else {
|
| writer.AppendArrayOfBytes(&configuration[0], configuration.size());
|
| }
|
| - response_sender.Run(response.Pass());
|
| + response_sender.Run(std::move(response));
|
| }
|
|
|
| // Origin thread (i.e. the UI thread in production).
|
|
|