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 d655d9d017a09b735357242ecedebf4450637300..0781837d8095fc5d90ce027116b16c0b6ae4fc96 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() { |