| Index: remoting/protocol/capture_scheduler_unittest.cc
|
| diff --git a/remoting/protocol/capture_scheduler_unittest.cc b/remoting/protocol/capture_scheduler_unittest.cc
|
| index a6dcc875af1a43ac10c8253136108f51ed53cd36..86f901b5ad84fe5118cd1ddfbe98a7f010d711a6 100644
|
| --- a/remoting/protocol/capture_scheduler_unittest.cc
|
| +++ b/remoting/protocol/capture_scheduler_unittest.cc
|
| @@ -58,7 +58,7 @@ class CaptureSchedulerTest : public testing::Test {
|
|
|
| scoped_ptr<VideoAck> ack(new VideoAck());
|
| ack->set_frame_id(packet.frame_id());
|
| - scheduler_->ProcessVideoAck(ack.Pass());
|
| + scheduler_->ProcessVideoAck(std::move(ack));
|
|
|
| EXPECT_TRUE(capture_timer_->IsRunning());
|
| EXPECT_EQ(std::max(base::TimeDelta(),
|
|
|