Index: webrtc/modules/rtp_rtcp/source/rtcp_sender.h |
diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_sender.h b/webrtc/modules/rtp_rtcp/source/rtcp_sender.h |
index dd3aec4c9fa75eab0b1b6738825065a95c44dfff..85748c81d56d36a97c413dc51dd452adf5279ef5 100644 |
--- a/webrtc/modules/rtp_rtcp/source/rtcp_sender.h |
+++ b/webrtc/modules/rtp_rtcp/source/rtcp_sender.h |
@@ -35,6 +35,7 @@ namespace webrtc { |
class ModuleRtpRtcpImpl; |
class RTCPReceiver; |
+class RtcEventLog; |
class NACKStringBuilder { |
public: |
@@ -77,6 +78,7 @@ class RTCPSender { |
Clock* clock, |
ReceiveStatistics* receive_statistics, |
RtcpPacketTypeCounterObserver* packet_type_counter_observer, |
+ RtcEventLog* event_log, |
Transport* outgoing_transport); |
virtual ~RTCPSender(); |
@@ -203,6 +205,7 @@ class RTCPSender { |
Random random_ GUARDED_BY(critical_section_rtcp_sender_); |
RtcpMode method_ GUARDED_BY(critical_section_rtcp_sender_); |
+ RtcEventLog* event_log_; |
the sun
2016/01/11 12:36:16
RtcEventLog* const event_log_ = nullptr;
terelius
2016/01/11 15:04:03
Added RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(RTCPSende
|
Transport* const transport_; |
rtc::scoped_ptr<CriticalSectionWrapper> critical_section_rtcp_sender_; |