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

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

Issue 178073004: Cast: IPC from browser to renderer to send packet events from transport to cast library. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 9 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 | « no previous file | chrome/browser/media/cast_transport_host_filter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 2c53ab855bd0d281c4a991a424a766e0eb7dc954..9b0d5167db4789a76dd84e810834ad46a05effd1 100644
--- a/chrome/browser/media/cast_transport_host_filter.h
+++ b/chrome/browser/media/cast_transport_host_filter.h
@@ -10,6 +10,7 @@
#include "chrome/common/cast_messages.h"
#include "content/public/browser/browser_message_filter.h"
#include "media/cast/cast_sender.h"
+#include "media/cast/logging/logging_defines.h"
#include "media/cast/transport/cast_transport_sender.h"
namespace cast {
@@ -32,6 +33,8 @@ class CastTransportHostFilter : public content::BrowserMessageFilter {
const media::cast::transport::RtcpSenderInfo& sender_info,
base::TimeTicks time_sent,
uint32 rtp_timestamp);
+ void RawEvents(int32 channel_id,
+ const std::vector<media::cast::PacketEvent>& packet_events);
// BrowserMessageFilter implementation.
virtual bool OnMessageReceived(const IPC::Message& message,
@@ -62,10 +65,10 @@ class CastTransportHostFilter : public content::BrowserMessageFilter {
int32 channel_id,
bool is_audio,
const media::cast::MissingFramesAndPacketsMap& missing_packets);
- void OnNew(
- int32 channel_id,
- const net::IPEndPoint& local_end_point,
- const net::IPEndPoint& remote_end_point);
+ void OnNew(int32 channel_id,
+ const net::IPEndPoint& local_end_point,
+ const net::IPEndPoint& remote_end_point,
+ const media::cast::CastLoggingConfig& logging_config);
void OnDelete(int32 channel_id);
IDMap<media::cast::transport::CastTransportSender, IDMapOwnPointer> id_map_;
« no previous file with comments | « no previous file | chrome/browser/media/cast_transport_host_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698