Chromium Code Reviews

Unified Diff: webrtc/call/bitrate_estimator_tests.cc

Issue 2784543002: Revert of Don't hardcode MediaType::ANY in FakeNetworkPipe. (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « webrtc/audio/test/low_bandwidth_audio_test.cc ('k') | webrtc/call/call.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/call/bitrate_estimator_tests.cc
diff --git a/webrtc/call/bitrate_estimator_tests.cc b/webrtc/call/bitrate_estimator_tests.cc
index 00a3b9e833eca62ab686dbfa2e97a15f2f42f605..bb4960f658efbe2ef919032a5cfe9cc17aac7498 100644
--- a/webrtc/call/bitrate_estimator_tests.cc
+++ b/webrtc/call/bitrate_estimator_tests.cc
@@ -108,11 +108,9 @@
receiver_call_.reset(Call::Create(config));
sender_call_.reset(Call::Create(config));
- send_transport_.reset(
- new test::DirectTransport(sender_call_.get(), MediaType::VIDEO));
+ send_transport_.reset(new test::DirectTransport(sender_call_.get()));
send_transport_->SetReceiver(receiver_call_->Receiver());
- receive_transport_.reset(
- new test::DirectTransport(receiver_call_.get(), MediaType::VIDEO));
+ receive_transport_.reset(new test::DirectTransport(receiver_call_.get()));
receive_transport_->SetReceiver(sender_call_->Receiver());
video_send_config_ = VideoSendStream::Config(send_transport_.get());
« no previous file with comments | « webrtc/audio/test/low_bandwidth_audio_test.cc ('k') | webrtc/call/call.cc » ('j') | no next file with comments »

Powered by Google App Engine