| Index: mojo/edk/test/scoped_ipc_support.cc
|
| diff --git a/mojo/edk/test/scoped_ipc_support.cc b/mojo/edk/test/scoped_ipc_support.cc
|
| index 6e9c11c2d10c35ee35ad0eaa3da278c279f9058f..2fb3126ff9d92561b21e05cc0930582149316511 100644
|
| --- a/mojo/edk/test/scoped_ipc_support.cc
|
| +++ b/mojo/edk/test/scoped_ipc_support.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "mojo/edk/test/scoped_ipc_support.h"
|
|
|
| +#include <utility>
|
| +
|
| #include "base/message_loop/message_loop.h"
|
| #include "mojo/edk/embedder/embedder.h"
|
|
|
| @@ -41,7 +43,7 @@ void ScopedIPCSupportHelper::OnShutdownCompleteImpl() {
|
|
|
| ScopedIPCSupport::ScopedIPCSupport(
|
| scoped_refptr<base::TaskRunner> io_thread_task_runner) {
|
| - helper_.Init(this, io_thread_task_runner.Pass());
|
| + helper_.Init(this, std::move(io_thread_task_runner));
|
| }
|
|
|
| ScopedIPCSupport::~ScopedIPCSupport() {
|
|
|