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

Unified Diff: webrtc/call/rampup_tests.cc

Issue 2353033005: Refactoring: move ownership of RtcEventLog from Call to PeerConnection (Closed)
Patch Set: Updated unit tests to use RtcEventLogNullImpl. Created 4 years, 2 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/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;
}

Powered by Google App Engine
This is Rietveld 408576698