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

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

Issue 1748403002: Move RtcEventLog object from inside VoiceEngine to Call. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fix for failing tests. 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/congestion_controller/include/congestion_controller.h
diff --git a/webrtc/modules/congestion_controller/include/congestion_controller.h b/webrtc/modules/congestion_controller/include/congestion_controller.h
index 65bf5be3ec1de6e537df290b58d72eb5b4fe58ac..cc30696de18a39dd4f9986005cccf7f0b80e1140 100644
--- a/webrtc/modules/congestion_controller/include/congestion_controller.h
+++ b/webrtc/modules/congestion_controller/include/congestion_controller.h
@@ -32,13 +32,15 @@ class PacedSender;
class ProcessThread;
class RemoteBitrateEstimator;
class RemoteBitrateObserver;
+class RtcEventLog;
class TransportFeedbackObserver;
class CongestionController : public CallStatsObserver, public Module {
public:
CongestionController(Clock* clock,
BitrateObserver* bitrate_observer,
- RemoteBitrateObserver* remote_bitrate_observer);
+ RemoteBitrateObserver* remote_bitrate_observer,
+ RtcEventLog* event_log);
virtual ~CongestionController();
virtual void SetBweBitrates(int min_bitrate_bps,

Powered by Google App Engine
This is Rietveld 408576698