| Index: third_party/mojo/src/mojo/edk/system/slave_connection_manager.cc
|
| diff --git a/third_party/mojo/src/mojo/edk/system/slave_connection_manager.cc b/third_party/mojo/src/mojo/edk/system/slave_connection_manager.cc
|
| index 373d9a32a9637d4436494f4529915609953d9161..0c85965a0bcdb10ab77d8c620b16c67e9711f166 100644
|
| --- a/third_party/mojo/src/mojo/edk/system/slave_connection_manager.cc
|
| +++ b/third_party/mojo/src/mojo/edk/system/slave_connection_manager.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "third_party/mojo/src/mojo/edk/system/slave_connection_manager.h"
|
|
|
| +#include <utility>
|
| +
|
| #include "base/bind.h"
|
| #include "base/bind_helpers.h"
|
| #include "base/location.h"
|
| @@ -131,7 +133,7 @@ void SlaveConnectionManager::InitOnPrivateThread(
|
| embedder::ScopedPlatformHandle platform_handle) {
|
| AssertOnPrivateThread();
|
|
|
| - raw_channel_ = RawChannel::Create(platform_handle.Pass());
|
| + raw_channel_ = RawChannel::Create(std::move(platform_handle));
|
| raw_channel_->Init(this);
|
| event_.Signal();
|
| }
|
|
|