| Index: remoting/protocol/host_video_dispatcher.cc
|
| diff --git a/remoting/protocol/host_video_dispatcher.cc b/remoting/protocol/host_video_dispatcher.cc
|
| index 4a752fbb74fa5300b5ec629044638f6ab4461344..c2068fedb12abe2e57fbc738e663f70e6d983d72 100644
|
| --- a/remoting/protocol/host_video_dispatcher.cc
|
| +++ b/remoting/protocol/host_video_dispatcher.cc
|
| @@ -32,7 +32,7 @@ void HostVideoDispatcher::ProcessVideoPacket(scoped_ptr<VideoPacket> packet,
|
| void HostVideoDispatcher::OnVideoAck(scoped_ptr<VideoAck> ack,
|
| const base::Closure& done) {
|
| if (video_feedback_stub_)
|
| - video_feedback_stub_->ProcessVideoAck(ack.Pass());
|
| + video_feedback_stub_->ProcessVideoAck(std::move(ack));
|
|
|
| done.Run();
|
| }
|
|
|