Index: webrtc/call/rampup_tests.cc |
diff --git a/webrtc/call/rampup_tests.cc b/webrtc/call/rampup_tests.cc |
index 9c17aae5aa5865381442fb4b16469278e76ff800..790895cb95846fb596998c4f109614499de2c7c2 100644 |
--- a/webrtc/call/rampup_tests.cc |
+++ b/webrtc/call/rampup_tests.cc |
@@ -69,6 +69,7 @@ RampUpTester::~RampUpTester() { |
Call::Config RampUpTester::GetSenderCallConfig() { |
Call::Config call_config; |
+ call_config.event_log = &event_log_; |
if (start_bitrate_bps_ != 0) { |
call_config.bitrate_config.start_bitrate_bps = start_bitrate_bps_; |
} |
@@ -383,6 +384,7 @@ bool RampUpDownUpTester::PollStats() { |
Call::Config RampUpDownUpTester::GetReceiverCallConfig() { |
Call::Config config; |
+ config.event_log = &event_log_; |
config.bitrate_config.min_bitrate_bps = 10000; |
return config; |
} |