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

Unified Diff: chrome/common/cast_messages.h

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
Index: chrome/common/cast_messages.h
diff --git a/chrome/common/cast_messages.h b/chrome/common/cast_messages.h
index 55d082c4ca730f208267afba26f6e90158d8a95e..84452ae28b43036357326e96bdca78e6995d32e1 100644
--- a/chrome/common/cast_messages.h
+++ b/chrome/common/cast_messages.h
@@ -139,13 +139,17 @@ IPC_MESSAGE_CONTROL4(
base::TimeTicks /* current_time */,
uint32 /* current_time_as_rtp_timestamp */)
-IPC_MESSAGE_CONTROL5(
- CastHostMsg_ResendPackets,
+IPC_MESSAGE_CONTROL3(
+ CastHostMsg_CancelSendingFrames,
int32 /* channel_id */,
- bool /* is_audio */,
- media::cast::MissingFramesAndPacketsMap /* missing_packets */,
- bool /* cancel_rtx_if_not_in_list */,
- base::TimeDelta /* dedupe_window */)
+ uint32 /* ssrc */,
+ std::vector<uint32> /* frame_ids */)
+
+IPC_MESSAGE_CONTROL3(
+ CastHostMsg_ResendFrameForKickstart,
+ int32 /* channel_id */,
+ uint32 /* ssrc */,
+ uint32 /* frame_id */)
IPC_MESSAGE_CONTROL2(
CastHostMsg_New,
« no previous file with comments | « chrome/browser/media/cast_transport_host_filter_unittest.cc ('k') | chrome/renderer/media/cast_transport_sender_ipc.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698