| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef MEDIA_CAST_RTCP_RTCP_RECEIVER_H_ | 5 #ifndef MEDIA_CAST_RTCP_RTCP_RECEIVER_H_ |
| 6 #define MEDIA_CAST_RTCP_RTCP_RECEIVER_H_ | 6 #define MEDIA_CAST_RTCP_RTCP_RECEIVER_H_ |
| 7 | 7 |
| 8 #include "media/cast/net/cast_net_defines.h" |
| 8 #include "media/cast/rtcp/rtcp.h" | 9 #include "media/cast/rtcp/rtcp.h" |
| 9 #include "media/cast/rtcp/rtcp_defines.h" | 10 #include "media/cast/rtcp/rtcp_defines.h" |
| 10 #include "media/cast/rtcp/rtcp_utility.h" | 11 #include "media/cast/rtcp/rtcp_utility.h" |
| 11 | 12 |
| 12 namespace media { | 13 namespace media { |
| 13 namespace cast { | 14 namespace cast { |
| 14 | 15 |
| 15 class RtcpReceiverFeedback { | 16 class RtcpReceiverFeedback { |
| 16 public: | 17 public: |
| 17 virtual void OnReceivedSenderReport( | 18 virtual void OnReceivedSenderReport( |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 | 114 |
| 114 FrameIdWrapHelper ack_frame_id_wrap_helper_; | 115 FrameIdWrapHelper ack_frame_id_wrap_helper_; |
| 115 | 116 |
| 116 DISALLOW_COPY_AND_ASSIGN(RtcpReceiver); | 117 DISALLOW_COPY_AND_ASSIGN(RtcpReceiver); |
| 117 }; | 118 }; |
| 118 | 119 |
| 119 } // namespace cast | 120 } // namespace cast |
| 120 } // namespace media | 121 } // namespace media |
| 121 | 122 |
| 122 #endif // MEDIA_CAST_RTCP_RTCP_RECEIVER_H_ | 123 #endif // MEDIA_CAST_RTCP_RTCP_RECEIVER_H_ |
| OLD | NEW |