| Index: content/browser/bluetooth/bluetooth_dispatcher_host.cc
|
| diff --git a/content/browser/bluetooth/bluetooth_dispatcher_host.cc b/content/browser/bluetooth/bluetooth_dispatcher_host.cc
|
| index 898a7283fdf7fb5e20a7d31d0a405d239693e8c1..7758a3e2c31d819b30e159fd32921471854a9046 100644
|
| --- a/content/browser/bluetooth/bluetooth_dispatcher_host.cc
|
| +++ b/content/browser/bluetooth/bluetooth_dispatcher_host.cc
|
| @@ -11,6 +11,8 @@
|
|
|
| #include "content/browser/bluetooth/bluetooth_dispatcher_host.h"
|
|
|
| +#include <utility>
|
| +
|
| #include "base/bind.h"
|
| #include "base/single_thread_task_runner.h"
|
| #include "base/strings/utf_string_conversions.h"
|
| @@ -297,7 +299,7 @@ void BluetoothDispatcherHost::SetBluetoothAdapterForTesting(
|
| devices_with_discovered_services_.clear();
|
| }
|
|
|
| - set_adapter(mock_adapter.Pass());
|
| + set_adapter(std::move(mock_adapter));
|
| }
|
|
|
| BluetoothDispatcherHost::~BluetoothDispatcherHost() {
|
|
|