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

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

Issue 388663003: Cast: Reshuffle files under media/cast (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: missing includes 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 | « 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 4705c6a18e9691e0b1ee34c75cba75e57cde5c2d..b241d9e3de84484de16c7a405e6eb2af3f4e8d54 100644
--- a/chrome/browser/media/cast_transport_host_filter.h
+++ b/chrome/browser/media/cast_transport_host_filter.h
@@ -11,7 +11,7 @@
#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"
+#include "media/cast/net/cast_transport_sender.h"
namespace cast {
@@ -23,10 +23,10 @@ class CastTransportHostFilter : public content::BrowserMessageFilter {
void NotifyStatusChange(
int32 channel_id,
- media::cast::transport::CastTransportStatus result);
+ media::cast::CastTransportStatus result);
void ReceivedPacket(
int32 channel_id,
- scoped_ptr<media::cast::transport::Packet> result);
+ scoped_ptr<media::cast::Packet> result);
void RawEvents(int32 channel_id,
const std::vector<media::cast::PacketEvent>& packet_events);
@@ -36,20 +36,20 @@ class CastTransportHostFilter : public content::BrowserMessageFilter {
// Forwarding functions.
void OnInitializeAudio(
int32 channel_id,
- const media::cast::transport::CastTransportRtpConfig& config);
+ const media::cast::CastTransportRtpConfig& config);
void OnInitializeVideo(
int32 channel_id,
- const media::cast::transport::CastTransportRtpConfig& config);
+ const media::cast::CastTransportRtpConfig& config);
void OnInsertCodedAudioFrame(
int32 channel_id,
- const media::cast::transport::EncodedFrame& audio_frame);
+ const media::cast::EncodedFrame& audio_frame);
void OnInsertCodedVideoFrame(
int32 channel_id,
- const media::cast::transport::EncodedFrame& video_frame);
+ const media::cast::EncodedFrame& video_frame);
void OnSendRtcpFromRtpSender(
int32 channel_id,
- const media::cast::transport::SendRtcpFromRtpSenderData& data,
- const media::cast::transport::RtcpDlrrReportBlock& dlrr);
+ const media::cast::SendRtcpFromRtpSenderData& data,
+ const media::cast::RtcpDlrrReportBlock& dlrr);
void OnResendPackets(
int32 channel_id,
bool is_audio,
@@ -61,7 +61,7 @@ class CastTransportHostFilter : public content::BrowserMessageFilter {
const net::IPEndPoint& remote_end_point);
void OnDelete(int32 channel_id);
- IDMap<media::cast::transport::CastTransportSender, IDMapOwnPointer> id_map_;
+ IDMap<media::cast::CastTransportSender, IDMapOwnPointer> id_map_;
// Clock used by Cast transport.
base::DefaultTickClock clock_;
« 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