Index: webrtc/modules/bitrate_controller/bitrate_controller_unittest.cc |
diff --git a/webrtc/modules/bitrate_controller/bitrate_controller_unittest.cc b/webrtc/modules/bitrate_controller/bitrate_controller_unittest.cc |
index 7da947b7b2505c053241601379f73e7af8ca436c..4b298cc152107b2f4234dd8084a2c7cbdf9e7ea8 100644 |
--- a/webrtc/modules/bitrate_controller/bitrate_controller_unittest.cc |
+++ b/webrtc/modules/bitrate_controller/bitrate_controller_unittest.cc |
@@ -169,7 +169,8 @@ TEST_F(BitrateControllerTest, OneBitrateObserverOneRtcpObserver) { |
EXPECT_EQ(300000, bitrate_observer_.last_bitrate_); |
// Test that a low delay-based estimate limits the combined estimate. |
- controller_->OnReceiveBitrateChanged({0}, 280000); |
+ webrtc::DelayBasedBwe::Result result(false, 280000); |
+ controller_->OnDelayBasedBweResult(result); |
EXPECT_EQ(280000, bitrate_observer_.last_bitrate_); |
// Test that a low REMB limits the combined estimate. |