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

Unified Diff: chrome/browser/media/cast_transport_host_filter.h

Issue 765643006: Cast: Make receiver use cast_transport (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix end2end test Created 6 years 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/browser/media/cast_transport_host_filter.h
diff --git a/chrome/browser/media/cast_transport_host_filter.h b/chrome/browser/media/cast_transport_host_filter.h
index 265cffa1045c5709c641e0c0354306db3fcef729..794bdcf39203f591f1a34c8348c865527f1a55ed 100644
--- a/chrome/browser/media/cast_transport_host_filter.h
+++ b/chrome/browser/media/cast_transport_host_filter.h
@@ -38,6 +38,7 @@ class CastTransportHostFilter : public content::BrowserMessageFilter {
void SendCastMessage(int32 channel_id,
uint32 ssrc,
const media::cast::RtcpCastMessage& cast_message);
+ void ReceivedPacket(int32 channel_id, scoped_ptr<media::cast::Packet> packet);
// BrowserMessageFilter implementation.
bool OnMessageReceived(const IPC::Message& message) override;
@@ -62,8 +63,14 @@ class CastTransportHostFilter : public content::BrowserMessageFilter {
const std::vector<uint32>& frame_ids);
void OnResendFrameForKickstart(int32 channel_id, uint32 ssrc,
uint32 frame_id);
+ void OnAddValidSsrc(int32 channel_id, uint32 ssrc);
+ void OnSendRtcpFromRtpReceiver(
+ int32 channel_id,
+ const media::cast::SendRtcpFromRtpReceiver_Params& params);
+
void OnNew(
int32 channel_id,
+ const net::IPEndPoint& local_end_point,
const net::IPEndPoint& remote_end_point,
const base::DictionaryValue& options);
void OnDelete(int32 channel_id);
« no previous file with comments | « no previous file | chrome/browser/media/cast_transport_host_filter.cc » ('j') | chrome/renderer/media/cast_transport_sender_ipc.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698