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

Unified Diff: chrome/renderer/media/cast_transport_sender_ipc.h

Issue 445933002: Cast: Move retransmission to the transport (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: IPC 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
Index: chrome/renderer/media/cast_transport_sender_ipc.h
diff --git a/chrome/renderer/media/cast_transport_sender_ipc.h b/chrome/renderer/media/cast_transport_sender_ipc.h
index 284572bbfa3dd97b008a4b99ec34a6e4f6ed48ae..e2b23c34eb0ac82968474300fbdb62a1115ff656 100644
--- a/chrome/renderer/media/cast_transport_sender_ipc.h
+++ b/chrome/renderer/media/cast_transport_sender_ipc.h
@@ -44,12 +44,9 @@ class CastTransportSenderIPC
uint32 ssrc,
base::TimeTicks current_time,
uint32 current_time_as_rtp_timestamp) OVERRIDE;
- virtual void ResendPackets(
- bool is_audio,
- const media::cast::MissingFramesAndPacketsMap& missing_packets,
- bool cancel_rtx_if_not_in_list,
- base::TimeDelta dedupe_window)
- OVERRIDE;
+ virtual void CancelSendingFrames(uint32 ssrc,
+ const std::set<uint32>& frame_ids) OVERRIDE;
+ virtual void ResendFrameForKickstart(uint32 ssrc, uint32 frame_id) OVERRIDE;
void OnNotifyStatusChange(
media::cast::CastTransportStatus status);

Powered by Google App Engine
This is Rietveld 408576698