Index: webrtc/modules/rtp_rtcp/include/rtp_rtcp.h |
diff --git a/webrtc/modules/rtp_rtcp/include/rtp_rtcp.h b/webrtc/modules/rtp_rtcp/include/rtp_rtcp.h |
index e0ace4c775d76c9df39d0d9a69954cb9c8b50df2..22d045ea182f753417d36ca1e036f24c8ba1b513 100644 |
--- a/webrtc/modules/rtp_rtcp/include/rtp_rtcp.h |
+++ b/webrtc/modules/rtp_rtcp/include/rtp_rtcp.h |
@@ -75,7 +75,6 @@ class RtpRtcp : public Module { |
BitrateStatisticsObserver* send_bitrate_observer; |
FrameCountObserver* send_frame_count_observer; |
SendSideDelayObserver* send_side_delay_observer; |
- RtcEventLog* event_log; |
stefan-webrtc
2016/03/03 10:08:25
Why do we have to make this change? If it really i
the sun
2016/03/03 10:17:15
That's a good idea! Put the proxy among the others
ivoc
2016/03/10 13:15:36
The reason for this change is that we no longer ha
|
RTC_DISALLOW_COPY_AND_ASSIGN(Configuration); |
}; |
@@ -649,6 +648,11 @@ class RtpRtcp : public Module { |
* return -1 on failure else 0 |
*/ |
virtual int32_t RequestKeyFrame() = 0; |
+ |
+ /* |
+ * Set the RtcEventLog object. |
+ */ |
+ virtual void SetRtcEventLog(webrtc::RtcEventLog* event_log) = 0; |
}; |
} // namespace webrtc |
#endif // WEBRTC_MODULES_RTP_RTCP_INCLUDE_RTP_RTCP_H_ |