| Index: webrtc/modules/bitrate_controller/send_side_bandwidth_estimation_unittest.cc
|
| diff --git a/webrtc/modules/bitrate_controller/send_side_bandwidth_estimation_unittest.cc b/webrtc/modules/bitrate_controller/send_side_bandwidth_estimation_unittest.cc
|
| index a6fda5be35d9b8cd3fc7adc8e8c8b85528bc45cf..1bf8e86a1b43fe99a282ef5ee2f2775702b20fe2 100644
|
| --- a/webrtc/modules/bitrate_controller/send_side_bandwidth_estimation_unittest.cc
|
| +++ b/webrtc/modules/bitrate_controller/send_side_bandwidth_estimation_unittest.cc
|
| @@ -17,7 +17,7 @@
|
| namespace webrtc {
|
|
|
| void TestProbing(bool use_delay_based) {
|
| - SendSideBandwidthEstimation bwe;
|
| + SendSideBandwidthEstimation bwe(nullptr);
|
| bwe.SetMinMaxBitrate(100000, 1500000);
|
| bwe.SetSendBitrate(200000);
|
|
|
| @@ -62,7 +62,7 @@ TEST(SendSideBweTest, InitialDelayBasedBweWithProbing) {
|
| }
|
|
|
| TEST(SendSideBweTest, DoesntReapplyBitrateDecreaseWithoutFollowingRemb) {
|
| - SendSideBandwidthEstimation bwe;
|
| + SendSideBandwidthEstimation bwe(nullptr);
|
| static const int kMinBitrateBps = 100000;
|
| static const int kInitialBitrateBps = 1000000;
|
| bwe.SetMinMaxBitrate(kMinBitrateBps, 1500000);
|
|
|