| Index: net/quic/core/congestion_control/bbr_sender.cc
|
| diff --git a/net/quic/core/congestion_control/bbr_sender.cc b/net/quic/core/congestion_control/bbr_sender.cc
|
| index b466337486965aa0fb6b82b0747cfc202eeb0f3b..c36a771377c0eb3a07055dfbe54cc81d80dad779 100644
|
| --- a/net/quic/core/congestion_control/bbr_sender.cc
|
| +++ b/net/quic/core/congestion_control/bbr_sender.cc
|
| @@ -333,10 +333,6 @@ QuicTime::Delta BbrSender::GetMinRtt() const {
|
|
|
| QuicByteCount BbrSender::GetTargetCongestionWindow(float gain) const {
|
| QuicByteCount bdp = GetMinRtt() * BandwidthEstimate();
|
| - if (FLAGS_quic_reloadable_flag_quic_bbr_base_cwnd_on_srtt &&
|
| - mode_ == PROBE_BW && gain >= 1 && !rtt_stats_->smoothed_rtt().IsZero()) {
|
| - bdp = rtt_stats_->smoothed_rtt() * BandwidthEstimate();
|
| - }
|
| QuicByteCount congestion_window = gain * bdp;
|
|
|
| // BDP estimate will be zero if no bandwidth samples are available yet.
|
|
|