Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1264)

Unified Diff: remoting/host/video_scheduler_unittest.cc

Issue 850983002: Implement video frame acknowledgements in the chromoting protocol. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: remoting/host/video_scheduler_unittest.cc
diff --git a/remoting/host/video_scheduler_unittest.cc b/remoting/host/video_scheduler_unittest.cc
index 5adfafa0c9ead7bcee9e69f934ab0d5bc8cfe7df..80a70e7c539bf96de2d93e8e03e55f936d557406 100644
--- a/remoting/host/video_scheduler_unittest.cc
+++ b/remoting/host/video_scheduler_unittest.cc
@@ -49,7 +49,8 @@ ACTION(FinishEncode) {
}
ACTION(FinishSend) {
- arg1.Run();
+ arg1.Run(protocol::VideoStub::PacketProgress::SENT);
+ arg1.Run(protocol::VideoStub::PacketProgress::DONE);
}
} // namespace

Powered by Google App Engine
This is Rietveld 408576698