| Index: content/gpu/gpu_child_thread.cc
|
| diff --git a/content/gpu/gpu_child_thread.cc b/content/gpu/gpu_child_thread.cc
|
| index 476b1c666db4fe1e1b9e79e05ca0ec52d5524d37..b9f7bc5442aabdda8398c56817ef52b8cde3f822 100644
|
| --- a/content/gpu/gpu_child_thread.cc
|
| +++ b/content/gpu/gpu_child_thread.cc
|
| @@ -5,6 +5,7 @@
|
| #include "content/gpu/gpu_child_thread.h"
|
|
|
| #include <stddef.h>
|
| +#include <utility>
|
|
|
| #include "base/bind.h"
|
| #include "base/lazy_instance.h"
|
| @@ -394,7 +395,8 @@ void GpuChildThread::BindProcessControlRequest(
|
| mojo::InterfaceRequest<ProcessControl> request) {
|
| DVLOG(1) << "GPU: Binding ProcessControl request";
|
| DCHECK(process_control_);
|
| - process_control_bindings_.AddBinding(process_control_.get(), request.Pass());
|
| + process_control_bindings_.AddBinding(process_control_.get(),
|
| + std::move(request));
|
| }
|
|
|
| } // namespace content
|
|
|