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

Unified Diff: media/cast/rtcp/rtcp_receiver.h

Issue 100823015: Cast: move net->transport (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Updating transport callback Created 7 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
« no previous file with comments | « media/cast/rtcp/rtcp_defines.h ('k') | media/cast/rtcp/rtcp_receiver.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/rtcp/rtcp_receiver.h
diff --git a/media/cast/rtcp/rtcp_receiver.h b/media/cast/rtcp/rtcp_receiver.h
index 81383c4ec10d64b366c09085e560a9fa3fe63464..f3e66443ac17fbdcce751f9773f9a6458effd90d 100644
--- a/media/cast/rtcp/rtcp_receiver.h
+++ b/media/cast/rtcp/rtcp_receiver.h
@@ -5,10 +5,10 @@
#ifndef MEDIA_CAST_RTCP_RTCP_RECEIVER_H_
#define MEDIA_CAST_RTCP_RTCP_RECEIVER_H_
-#include "media/cast/net/cast_net_defines.h"
#include "media/cast/rtcp/rtcp.h"
#include "media/cast/rtcp/rtcp_defines.h"
#include "media/cast/rtcp/rtcp_utility.h"
+#include "media/cast/transport/cast_transport_defines.h"
namespace media {
namespace cast {
@@ -16,7 +16,7 @@ namespace cast {
class RtcpReceiverFeedback {
public:
virtual void OnReceivedSenderReport(
- const RtcpSenderInfo& remote_sender_info) = 0;
+ const transport::RtcpSenderInfo& remote_sender_info) = 0;
virtual void OnReceiverReferenceTimeReport(
const RtcpReceiverReferenceTimeReport& remote_time_report) = 0;
@@ -27,7 +27,7 @@ class RtcpReceiverFeedback {
const RtcpReceiverLogMessage& receiver_log) = 0;
virtual void OnReceivedSenderLog(
- const RtcpSenderLogMessage& sender_log) = 0;
+ const transport::RtcpSenderLogMessage& sender_log) = 0;
virtual ~RtcpReceiverFeedback() {}
};
@@ -112,7 +112,7 @@ class RtcpReceiver {
RtcpRttFeedback* const rtt_feedback_;
scoped_refptr<CastEnvironment> cast_environment_;
- FrameIdWrapHelper ack_frame_id_wrap_helper_;
+ transport::FrameIdWrapHelper ack_frame_id_wrap_helper_;
DISALLOW_COPY_AND_ASSIGN(RtcpReceiver);
};
« no previous file with comments | « media/cast/rtcp/rtcp_defines.h ('k') | media/cast/rtcp/rtcp_receiver.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698