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

Unified Diff: webrtc/call/bitrate_estimator_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/bitrate_estimator_tests.cc
diff --git a/webrtc/call/bitrate_estimator_tests.cc b/webrtc/call/bitrate_estimator_tests.cc
index 60e1d8c83468681d4c6fa3b1e5644d30ccc72451..8c51026d60c5e2543f225946434b5dc9cca4a03a 100644
--- a/webrtc/call/bitrate_estimator_tests.cc
+++ b/webrtc/call/bitrate_estimator_tests.cc
@@ -18,6 +18,7 @@
#include "webrtc/base/logging.h"
#include "webrtc/base/thread_annotations.h"
#include "webrtc/call.h"
+#include "webrtc/logging/rtc_event_log/rtc_event_log.h"
#include "webrtc/system_wrappers/include/critical_section_wrapper.h"
#include "webrtc/system_wrappers/include/trace.h"
#include "webrtc/test/call_test.h"
@@ -110,6 +111,7 @@ class BitrateEstimatorTest : public test::CallTest {
AudioState::Config audio_state_config;
audio_state_config.voice_engine = &mock_voice_engine_;
Call::Config config;
+ config.event_log = &event_log_;
config.audio_state = AudioState::Create(audio_state_config);
receiver_call_.reset(Call::Create(config));
sender_call_.reset(Call::Create(config));
@@ -251,6 +253,7 @@ class BitrateEstimatorTest : public test::CallTest {
test::FakeDecoder fake_decoder_;
};
+ webrtc::RtcEventLogNullImpl event_log_;
stefan-webrtc 2016/10/05 07:35:22 This is a CallTest and should already have the eve
skvlad 2016/10/06 01:31:38 Done.
testing::NiceMock<test::MockVoiceEngine> mock_voice_engine_;
LogObserver receiver_log_;
std::unique_ptr<test::DirectTransport> send_transport_;
« no previous file with comments | « webrtc/call.h ('k') | webrtc/call/call.cc » ('j') | webrtc/call/packet_injection_tests.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698