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

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

Issue 174183003: Cast:Transport: Dividing A/V Initialization pipeline (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixing errors and yet another rebase Created 6 years, 10 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 a839c03fe238d3d0b7a137384fdf024ee5bfc42f..2c53ab855bd0d281c4a991a424a766e0eb7dc954 100644
--- a/chrome/browser/media/cast_transport_host_filter.h
+++ b/chrome/browser/media/cast_transport_host_filter.h
@@ -38,6 +38,12 @@ class CastTransportHostFilter : public content::BrowserMessageFilter {
bool* message_was_ok) OVERRIDE;
// Forwarding functions.
+ void OnInitializeAudio(
+ int32 channel_id,
+ const media::cast::transport::CastTransportAudioConfig& config);
+ void OnInitializeVideo(
+ int32 channel_id,
+ const media::cast::transport::CastTransportVideoConfig& config);
void OnInsertCodedAudioFrame(
int32 channel_id,
const media::cast::transport::EncodedAudioFrame& audio_frame,
@@ -58,13 +64,15 @@ class CastTransportHostFilter : public content::BrowserMessageFilter {
const media::cast::MissingFramesAndPacketsMap& missing_packets);
void OnNew(
int32 channel_id,
- const media::cast::transport::CastTransportConfig& config);
+ const net::IPEndPoint& local_end_point,
+ const net::IPEndPoint& remote_end_point);
void OnDelete(int32 channel_id);
IDMap<media::cast::transport::CastTransportSender, IDMapOwnPointer> id_map_;
// Clock used by Cast transport.
base::DefaultTickClock clock_;
+
DISALLOW_COPY_AND_ASSIGN(CastTransportHostFilter);
};
« 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