| Index: mojo/edk/test/multiprocess_test_helper.cc
|
| diff --git a/mojo/edk/test/multiprocess_test_helper.cc b/mojo/edk/test/multiprocess_test_helper.cc
|
| index d82cbafb0a6d9e2c20eb093983a44d30171eef87..0490119abbc227a32bdedcccd05c685379e7b834 100644
|
| --- a/mojo/edk/test/multiprocess_test_helper.cc
|
| +++ b/mojo/edk/test/multiprocess_test_helper.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "mojo/edk/test/multiprocess_test_helper.h"
|
|
|
| +#include <utility>
|
| +
|
| #include "base/command_line.h"
|
| #include "base/logging.h"
|
| #include "base/process/kill.h"
|
| @@ -117,7 +119,7 @@ void MultiprocessTestHelper::ChildSetup() {
|
| ScopedPlatformHandle broker_handle =
|
| PlatformChannelPair::PassClientHandleFromParentProcessFromString(
|
| broker_handle_str);
|
| - SetParentPipeHandle(broker_handle.Pass());
|
| + SetParentPipeHandle(std::move(broker_handle));
|
| }
|
|
|
| // static
|
|
|