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

Unified Diff: net/quic/quic_flags.cc

Issue 324283004: Rename FLAGS_enable_quic_connection_flow_control to FLAGS_enable_quic_connection_flow_control_2, an… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
Index: net/quic/quic_flags.cc
diff --git a/net/quic/quic_flags.cc b/net/quic/quic_flags.cc
index 50a75890507387b73fb7d3f31b08e4e2e6301ec0..572b0d443bdfc5bcbb3c6bf42a15d2a5e25cab3f 100644
--- a/net/quic/quic_flags.cc
+++ b/net/quic/quic_flags.cc
@@ -23,15 +23,14 @@ bool FLAGS_enable_quic_pacing = true;
// If true, turns on stream flow control in QUIC.
// If this is disabled, all in flight QUIC connections talking QUIC_VERSION_17
// or higher will timeout. New connections will be fine.
-// If disabling this flag, also disable enable_quic_connection_flow_control.
+// If disabling this flag, also disable enable_quic_connection_flow_control_2.
bool FLAGS_enable_quic_stream_flow_control_2 = true;
// Do not remove this flag until b/11792453 is marked as Fixed.
// If true, turns on connection level flow control in QUIC.
// If this is disabled, all in flight QUIC connections talking QUIC_VERSION_19
// or higher will timeout. New connections will be fine.
-// Disabled due to b/15084203.
-bool FLAGS_enable_quic_connection_flow_control = false;
+bool FLAGS_enable_quic_connection_flow_control_2 = true;
bool FLAGS_quic_allow_oversized_packets_for_test = false;

Powered by Google App Engine
This is Rietveld 408576698