| Index: net/quic/quic_data_stream_test.cc
|
| diff --git a/net/quic/quic_data_stream_test.cc b/net/quic/quic_data_stream_test.cc
|
| index b72f3cebf06fa9edad4a2d653a104c820200c484..be9bc4d213327beaeb87461c9d292539cdde2f1c 100644
|
| --- a/net/quic/quic_data_stream_test.cc
|
| +++ b/net/quic/quic_data_stream_test.cc
|
| @@ -285,7 +285,6 @@ TEST_P(QuicDataStreamTest, StreamFlowControlBlocked) {
|
| if (GetParam() < QUIC_VERSION_17) {
|
| return;
|
| }
|
| - ValueRestore<bool> old_flag(&FLAGS_enable_quic_stream_flow_control_2, true);
|
|
|
| Initialize(kShouldProcessData);
|
|
|
| @@ -324,7 +323,6 @@ TEST_P(QuicDataStreamTest, StreamFlowControlNoWindowUpdateIfNotConsumed) {
|
| if (GetParam() < QUIC_VERSION_17) {
|
| return;
|
| }
|
| - ValueRestore<bool> old_flag(&FLAGS_enable_quic_stream_flow_control_2, true);
|
|
|
| // Don't process data - it will be buffered instead.
|
| Initialize(!kShouldProcessData);
|
| @@ -372,7 +370,6 @@ TEST_P(QuicDataStreamTest, StreamFlowControlWindowUpdate) {
|
| if (GetParam() < QUIC_VERSION_17) {
|
| return;
|
| }
|
| - ValueRestore<bool> old_flag(&FLAGS_enable_quic_stream_flow_control_2, true);
|
|
|
| Initialize(kShouldProcessData);
|
|
|
| @@ -421,7 +418,6 @@ TEST_P(QuicDataStreamTest, ConnectionFlowControlWindowUpdate) {
|
| if (GetParam() < QUIC_VERSION_19) {
|
| return;
|
| }
|
| - ValueRestore<bool> old_flag2(&FLAGS_enable_quic_stream_flow_control_2, true);
|
| ValueRestore<bool> old_flag(&FLAGS_enable_quic_connection_flow_control_2,
|
| true);
|
|
|
| @@ -478,7 +474,6 @@ TEST_P(QuicDataStreamTest, StreamFlowControlViolation) {
|
| if (GetParam() < QUIC_VERSION_17) {
|
| return;
|
| }
|
| - ValueRestore<bool> old_flag(&FLAGS_enable_quic_stream_flow_control_2, true);
|
|
|
| // Stream should not process data, so that data gets buffered in the
|
| // sequencer, triggering flow control limits.
|
| @@ -510,7 +505,6 @@ TEST_P(QuicDataStreamTest, ConnectionFlowControlViolation) {
|
| if (GetParam() < QUIC_VERSION_19) {
|
| return;
|
| }
|
| - ValueRestore<bool> old_flag2(&FLAGS_enable_quic_stream_flow_control_2, true);
|
| ValueRestore<bool> old_flag(&FLAGS_enable_quic_connection_flow_control_2,
|
| true);
|
|
|
| @@ -548,7 +542,6 @@ TEST_P(QuicDataStreamTest, StreamFlowControlFinNotBlocked) {
|
| if (GetParam() < QUIC_VERSION_17) {
|
| return;
|
| }
|
| - ValueRestore<bool> old_flag(&FLAGS_enable_quic_stream_flow_control_2, true);
|
|
|
| Initialize(kShouldProcessData);
|
|
|
|
|