| Index: content/browser/mojo/mojo_app_connection_impl.cc
|
| diff --git a/content/browser/mojo/mojo_app_connection_impl.cc b/content/browser/mojo/mojo_app_connection_impl.cc
|
| index 4fe85842af6df689fe7967b4960dfa72d0c822a3..2f55450eb1248dba88db5f44fdb629a91b686613 100644
|
| --- a/content/browser/mojo/mojo_app_connection_impl.cc
|
| +++ b/content/browser/mojo/mojo_app_connection_impl.cc
|
| @@ -5,6 +5,7 @@
|
| #include "content/browser/mojo/mojo_app_connection_impl.h"
|
|
|
| #include <stdint.h>
|
| +#include <utility>
|
|
|
| #include "base/bind.h"
|
| #include "content/browser/mojo/mojo_shell_context.h"
|
| @@ -40,7 +41,7 @@ MojoAppConnectionImpl::~MojoAppConnectionImpl() {
|
| void MojoAppConnectionImpl::ConnectToService(
|
| const std::string& service_name,
|
| mojo::ScopedMessagePipeHandle handle) {
|
| - services_->ConnectToService(service_name, handle.Pass());
|
| + services_->ConnectToService(service_name, std::move(handle));
|
| }
|
|
|
| } // namespace content
|
|
|