Index: cc/trees/threaded_channel.cc |
diff --git a/cc/trees/threaded_channel.cc b/cc/trees/threaded_channel.cc |
index a2cb7831b61238dc0c42631ef4bde7b1e4691c30..37ed58f7328de5c122cc6419f0e927afcfb22e14 100644 |
--- a/cc/trees/threaded_channel.cc |
+++ b/cc/trees/threaded_channel.cc |
@@ -209,8 +209,8 @@ void ThreadedChannel::PostFrameTimingEventsOnMain( |
MainThreadTaskRunner()->PostTask( |
FROM_HERE, base::Bind(&ProxyMain::PostFrameTimingEventsOnMain, |
proxy_main_->GetMainWeakPtr(), |
- base::Passed(composite_events.Pass()), |
- base::Passed(main_frame_events.Pass()))); |
+ base::Passed(std::move(composite_events)), |
+ base::Passed(std::move(main_frame_events)))); |
} |
void ThreadedChannel::BeginMainFrame( |