Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(443)

Unified Diff: net/quic/quic_data_stream_test.cc

Issue 357573004: Land Recent QUIC Changes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase with TOT Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/quic/quic_crypto_stream_test.cc ('k') | net/quic/quic_dispatcher.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « net/quic/quic_crypto_stream_test.cc ('k') | net/quic/quic_dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698