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

Unified Diff: media/cast/test/cast_benchmarks.cc

Issue 445933002: Cast: Move retransmission to the transport (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixed test compile Created 6 years, 4 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
« no previous file with comments | « media/cast/sender/video_sender_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/test/cast_benchmarks.cc
diff --git a/media/cast/test/cast_benchmarks.cc b/media/cast/test/cast_benchmarks.cc
index 57806b35dad51b547178d7798bf0fd74a712c610..07b4de538217adcd55d11189731a48114086b1e5 100644
--- a/media/cast/test/cast_benchmarks.cc
+++ b/media/cast/test/cast_benchmarks.cc
@@ -143,14 +143,15 @@ class CastTransportSenderWrapper : public CastTransportSender {
current_time_as_rtp_timestamp);
}
- // Retransmission request.
- virtual void ResendPackets(
- bool is_audio,
- const MissingFramesAndPacketsMap& missing_packets,
- bool cancel_rtx_if_not_in_list,
- base::TimeDelta dedupe_window) OVERRIDE {
- transport_->ResendPackets(
- is_audio, missing_packets, cancel_rtx_if_not_in_list, dedupe_window);
+ virtual void CancelSendingFrames(
+ uint32 ssrc,
+ const std::vector<uint32>& frame_ids) OVERRIDE {
+ transport_->CancelSendingFrames(ssrc, frame_ids);
+ }
+
+ virtual void ResendFrameForKickstart(uint32 ssrc,
+ uint32 frame_id) OVERRIDE {
+ transport_->ResendFrameForKickstart(ssrc, frame_id);
}
virtual PacketReceiverCallback PacketReceiverForTesting() OVERRIDE {
« no previous file with comments | « media/cast/sender/video_sender_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698