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

Unified Diff: net/quic/core/quic_spdy_session.cc

Issue 2678003003: Make QUIC force HOL-blocking mode only apply to v36. This is basically a no-op since neither v36 no… (Closed)
Patch Set: fix two chromium tests. Created 3 years, 10 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/core/quic_session_test.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/core/quic_spdy_session.cc
diff --git a/net/quic/core/quic_spdy_session.cc b/net/quic/core/quic_spdy_session.cc
index fe5bae69280dd069d41b6df8076a3a317a4e8101..29f71db0b32ca6dae217053b0baa6896ff824d2f 100644
--- a/net/quic/core/quic_spdy_session.cc
+++ b/net/quic/core/quic_spdy_session.cc
@@ -571,7 +571,7 @@ void QuicSpdySession::OnConfigNegotiated() {
}
const QuicVersion version = connection()->version();
if (FLAGS_quic_reloadable_flag_quic_enable_force_hol_blocking &&
- version > QUIC_VERSION_35 && config()->ForceHolBlocking(perspective())) {
+ version == QUIC_VERSION_36 && config()->ForceHolBlocking(perspective())) {
force_hol_blocking_ = true;
// Since all streams are tunneled through the headers stream, it
// is important that headers stream never flow control blocks.
« no previous file with comments | « net/quic/core/quic_session_test.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698