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

Unified Diff: media/cast/rtcp/rtcp_unittest.cc

Issue 343523005: Cast: Avoid retransmit if we sent the same packet recently (less than RTT) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: got 500 responses when uploading, uploading again Created 6 years, 6 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: media/cast/rtcp/rtcp_unittest.cc
diff --git a/media/cast/rtcp/rtcp_unittest.cc b/media/cast/rtcp/rtcp_unittest.cc
index d5bf312c3e06531c0ea1716a692b4103ce74c728..8d894603d2b047045c030eaecf4cbc11a4185ec2 100644
--- a/media/cast/rtcp/rtcp_unittest.cc
+++ b/media/cast/rtcp/rtcp_unittest.cc
@@ -104,7 +104,8 @@ class LocalRtcpTransport : public transport::PacedPacketSender {
}
virtual bool ResendPackets(
- const transport::SendPacketVector& packets) OVERRIDE {
+ const transport::SendPacketVector& packets,
+ base::TimeDelta rtt) OVERRIDE {
return false;
}

Powered by Google App Engine
This is Rietveld 408576698