| Index: device/devices_app/devices_apptest.cc
|
| diff --git a/device/devices_app/devices_apptest.cc b/device/devices_app/devices_apptest.cc
|
| index ff41a1a62a27006011149710383300db9905b37a..b6b150324523d5b58e743985c66898f62dac6ad0 100644
|
| --- a/device/devices_app/devices_apptest.cc
|
| +++ b/device/devices_app/devices_apptest.cc
|
| @@ -2,6 +2,8 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| +#include <utility>
|
| +
|
| #include "base/bind.h"
|
| #include "base/callback.h"
|
| #include "base/macros.h"
|
| @@ -47,7 +49,7 @@ TEST_F(DevicesAppTest, GetUSBDevices) {
|
| options->filters = mojo::Array<usb::DeviceFilterPtr>(1);
|
| options->filters[0] = usb::DeviceFilter::New();
|
| usb_device_manager()->GetDevices(
|
| - options.Pass(), base::Bind(&OnGetDevices, loop.QuitClosure()));
|
| + std::move(options), base::Bind(&OnGetDevices, loop.QuitClosure()));
|
| loop.Run();
|
| }
|
|
|
|
|