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

Unified Diff: webrtc/test/call_test.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/test/call_test.h ('k') | webrtc/video/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/test/call_test.cc
diff --git a/webrtc/test/call_test.cc b/webrtc/test/call_test.cc
index 8c6ac45c616ff37a98397ac744112bf350e4b5ee..57aca89dc7849deb90a628a8a961c0fddca62cf7 100644
--- a/webrtc/test/call_test.cc
+++ b/webrtc/test/call_test.cc
@@ -382,11 +382,11 @@ BaseTest::~BaseTest() {
}
Call::Config BaseTest::GetSenderCallConfig() {
- return Call::Config();
+ return Call::Config(&event_log_);
}
Call::Config BaseTest::GetReceiverCallConfig() {
- return Call::Config();
+ return Call::Config(&event_log_);
}
void BaseTest::OnCallsCreated(Call* sender_call, Call* receiver_call) {
« no previous file with comments | « webrtc/test/call_test.h ('k') | webrtc/video/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698