Index: net/quic/congestion_control/send_algorithm_interface.cc |
diff --git a/net/quic/congestion_control/send_algorithm_interface.cc b/net/quic/congestion_control/send_algorithm_interface.cc |
index 821beb755b7e9d4f8ebb71e8e69a0b9d06a078fe..205e15c6d7eae7b6354d58bbcdb36dfede150b2c 100644 |
--- a/net/quic/congestion_control/send_algorithm_interface.cc |
+++ b/net/quic/congestion_control/send_algorithm_interface.cc |
@@ -20,12 +20,7 @@ SendAlgorithmInterface* SendAlgorithmInterface::Create( |
CongestionControlType congestion_control_type, |
QuicConnectionStats* stats, |
QuicPacketCount initial_congestion_window) { |
- QuicPacketCount max_congestion_window = |
- (kDefaultSocketReceiveBuffer * kConservativeReceiveBufferFraction) / |
- kDefaultTCPMSS; |
- if (FLAGS_quic_ignore_srbf) { |
- max_congestion_window = kDefaultMaxCongestionWindowPackets; |
- } |
+ QuicPacketCount max_congestion_window = kDefaultMaxCongestionWindowPackets; |
switch (congestion_control_type) { |
case kCubic: |
return new TcpCubicSenderPackets( |