| Index: net/quic/quic_flow_controller.cc
|
| diff --git a/net/quic/quic_flow_controller.cc b/net/quic/quic_flow_controller.cc
|
| index 107b4d9510a1f376f5987da410fd4c97c9a73bc1..fb2dcf132617f21d2c08b910938fc81609deebdf 100644
|
| --- a/net/quic/quic_flow_controller.cc
|
| +++ b/net/quic/quic_flow_controller.cc
|
| @@ -182,9 +182,7 @@ bool QuicFlowController::IsEnabled() const {
|
| bool connection_flow_control_enabled =
|
| (id_ == kConnectionLevelId &&
|
| FLAGS_enable_quic_connection_flow_control_2);
|
| - bool stream_flow_control_enabled =
|
| - (id_ != kConnectionLevelId &&
|
| - FLAGS_enable_quic_stream_flow_control_2);
|
| + bool stream_flow_control_enabled = (id_ != kConnectionLevelId);
|
| return (connection_flow_control_enabled || stream_flow_control_enabled) &&
|
| is_enabled_;
|
| }
|
|
|