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

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

Issue 387933005: Cast: Refactor RTCP handling (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix test Created 6 years, 5 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 | « chrome/common/cast_messages.h ('k') | chrome/renderer/media/cast_ipc_dispatcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/media/cast_ipc_dispatcher.h
diff --git a/chrome/renderer/media/cast_ipc_dispatcher.h b/chrome/renderer/media/cast_ipc_dispatcher.h
index bc19422bb5e74ddc2ba9a6408fdb4c565ed9d37f..02f2f46bcd61737650ccf7039dc8fa7a20b82386 100644
--- a/chrome/renderer/media/cast_ipc_dispatcher.h
+++ b/chrome/renderer/media/cast_ipc_dispatcher.h
@@ -37,7 +37,6 @@ class CastIPCDispatcher : public IPC::MessageFilter {
virtual ~CastIPCDispatcher();
private:
- void OnReceivedPacket(int32 channel_id, const media::cast::Packet& packet);
void OnNotifyStatusChange(
int32 channel_id,
media::cast::CastTransportStatus status);
@@ -48,7 +47,14 @@ class CastIPCDispatcher : public IPC::MessageFilter {
base::TimeTicks time_sent,
uint32 rtp_timestamp);
void OnRawEvents(int32 channel_id,
- const std::vector<media::cast::PacketEvent>& packet_events);
+ const std::vector<media::cast::PacketEvent>& packet_events,
+ const std::vector<media::cast::FrameEvent>& frame_events);
+ void OnRtt(int32 channel_id,
+ uint32 ssrc,
+ const media::cast::RtcpRttReport& rtt_report);
+ void OnRtcpCastMessage(int32 channel_id,
+ uint32 ssrc,
+ const media::cast::RtcpCastMessage& cast_message);
static CastIPCDispatcher* global_instance_;
« no previous file with comments | « chrome/common/cast_messages.h ('k') | chrome/renderer/media/cast_ipc_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698