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

Unified Diff: webrtc/call/bitrate_estimator_tests.cc

Issue 2783853002: Reland of Don't hardcode MediaType::ANY in FakeNetworkPipe. (Closed)
Patch Set: Fix braces. Add comment on use of demuxer. Created 3 years, 9 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 bb4960f658efbe2ef919032a5cfe9cc17aac7498..00a3b9e833eca62ab686dbfa2e97a15f2f42f605 100644
--- a/webrtc/call/bitrate_estimator_tests.cc
+++ b/webrtc/call/bitrate_estimator_tests.cc
@@ -108,9 +108,11 @@ class BitrateEstimatorTest : public test::CallTest {
receiver_call_.reset(Call::Create(config));
sender_call_.reset(Call::Create(config));
- send_transport_.reset(new test::DirectTransport(sender_call_.get()));
+ send_transport_.reset(
+ new test::DirectTransport(sender_call_.get(), MediaType::VIDEO));
send_transport_->SetReceiver(receiver_call_->Receiver());
- receive_transport_.reset(new test::DirectTransport(receiver_call_.get()));
+ receive_transport_.reset(
+ new test::DirectTransport(receiver_call_.get(), MediaType::VIDEO));
receive_transport_->SetReceiver(sender_call_->Receiver());
video_send_config_ = VideoSendStream::Config(send_transport_.get());

Powered by Google App Engine
This is Rietveld 408576698