summaryrefslogtreecommitdiffstats
path: root/net/quic/congestion_control/send_algorithm_interface.cc
diff options
context:
space:
mode:
Diffstat (limited to 'net/quic/congestion_control/send_algorithm_interface.cc')
-rw-r--r--net/quic/congestion_control/send_algorithm_interface.cc5
1 files changed, 1 insertions, 4 deletions
diff --git a/net/quic/congestion_control/send_algorithm_interface.cc b/net/quic/congestion_control/send_algorithm_interface.cc
index eaad6ca..d1b0ec5 100644
--- a/net/quic/congestion_control/send_algorithm_interface.cc
+++ b/net/quic/congestion_control/send_algorithm_interface.cc
@@ -6,7 +6,6 @@
#include "net/quic/congestion_control/tcp_cubic_bytes_sender.h"
#include "net/quic/congestion_control/tcp_cubic_sender.h"
-#include "net/quic/quic_flags.h"
#include "net/quic/quic_protocol.h"
namespace net {
@@ -21,9 +20,7 @@ SendAlgorithmInterface* SendAlgorithmInterface::Create(
QuicConnectionStats* stats,
QuicPacketCount initial_congestion_window) {
const QuicPacketCount max_congestion_window =
- (kDefaultSocketReceiveBuffer * (FLAGS_quic_use_conservative_receive_buffer
- ? kConservativeReceiveBufferFraction
- : kUsableRecieveBufferFraction)) /
+ (kDefaultSocketReceiveBuffer * kConservativeReceiveBufferFraction) /
kDefaultTCPMSS;
switch (congestion_control_type) {
case kCubic: