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

Unified Diff: webrtc/modules/rtp_rtcp/include/rtp_rtcp.h

Issue 1748403002: Move RtcEventLog object from inside VoiceEngine to Call. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Introduce proxy object for RtcEventLog and handle other comments. Created 4 years, 9 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
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..d1fb133c568a38b014aa7ef5cc74ab8b25fc6fe2 100644
--- a/webrtc/modules/rtp_rtcp/include/rtp_rtcp.h
+++ b/webrtc/modules/rtp_rtcp/include/rtp_rtcp.h
@@ -24,7 +24,7 @@ class ReceiveStatistics;
class RemoteBitrateEstimator;
class RtpReceiver;
class Transport;
-class RtcEventLog;
+class RtcEventLogProxy;
namespace rtcp {
class TransportFeedback;
@@ -75,7 +75,7 @@ class RtpRtcp : public Module {
BitrateStatisticsObserver* send_bitrate_observer;
FrameCountObserver* send_frame_count_observer;
SendSideDelayObserver* send_side_delay_observer;
- RtcEventLog* event_log;
+ RtcEventLogProxy* event_log;
stefan-webrtc 2016/03/11 10:11:53 I think you can keep this as an RtcEventLog*, the
RTC_DISALLOW_COPY_AND_ASSIGN(Configuration);
};

Powered by Google App Engine
This is Rietveld 408576698