| Index: mojo/services/tracing/trace_recorder_impl.cc
|
| diff --git a/mojo/services/tracing/trace_recorder_impl.cc b/mojo/services/tracing/trace_recorder_impl.cc
|
| index 493abb5e8a7b7ec8fcbe3380f2892e6113e04719..92dd95c40863e6f1765e7be1c22a5af2d6e92098 100644
|
| --- a/mojo/services/tracing/trace_recorder_impl.cc
|
| +++ b/mojo/services/tracing/trace_recorder_impl.cc
|
| @@ -4,13 +4,14 @@
|
|
|
| #include "mojo/services/tracing/trace_recorder_impl.h"
|
|
|
| +#include <utility>
|
| +
|
| namespace tracing {
|
|
|
| TraceRecorderImpl::TraceRecorderImpl(
|
| mojo::InterfaceRequest<TraceRecorder> request,
|
| TraceDataSink* sink)
|
| - : sink_(sink), binding_(this, request.Pass()) {
|
| -}
|
| + : sink_(sink), binding_(this, std::move(request)) {}
|
|
|
| TraceRecorderImpl::~TraceRecorderImpl() {
|
| }
|
|
|