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

Unified Diff: webrtc/call/rampup_tests.cc

Issue 2353033005: Refactoring: move ownership of RtcEventLog from Call to PeerConnection (Closed)
Patch Set: Moved the constructor 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
« no previous file with comments | « webrtc/call/rampup_tests.h ('k') | webrtc/media/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/call/rampup_tests.cc
diff --git a/webrtc/call/rampup_tests.cc b/webrtc/call/rampup_tests.cc
index 0199cc8ccef104e2e877159db572e620ecfdd6d4..df64f41051b57dfccf91cf2f06aa6536d77b6196 100644
--- a/webrtc/call/rampup_tests.cc
+++ b/webrtc/call/rampup_tests.cc
@@ -68,7 +68,7 @@ RampUpTester::~RampUpTester() {
}
Call::Config RampUpTester::GetSenderCallConfig() {
- Call::Config call_config;
+ Call::Config call_config(&event_log_);
if (start_bitrate_bps_ != 0) {
call_config.bitrate_config.start_bitrate_bps = start_bitrate_bps_;
}
@@ -382,7 +382,7 @@ bool RampUpDownUpTester::PollStats() {
}
Call::Config RampUpDownUpTester::GetReceiverCallConfig() {
- Call::Config config;
+ Call::Config config(&event_log_);
config.bitrate_config.min_bitrate_bps = 10000;
return config;
}
« no previous file with comments | « webrtc/call/rampup_tests.h ('k') | webrtc/media/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698