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

Unified Diff: net/quic/quic_flow_controller.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_flags.cc ('k') | net/quic/quic_flow_controller_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_;
}
« no previous file with comments | « net/quic/quic_flags.cc ('k') | net/quic/quic_flow_controller_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698