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

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

Issue 2962953002: In QUIC, do not enable forced HOL blocking if FLAGS_quic_reloadable_flag_quic_use_stream_notifier2 … (Closed)
Patch Set: Rebase Created 3 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/core/quic_session_test.cc ('k') | net/tools/quic/end_to_end_test.cc » ('j') | 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 be9aa55dd03dd08703f2f5180fa4c8edbf3331a3..ec950dcd90636576cd73b3c1552e143907b8d78f 100644
--- a/net/quic/core/quic_spdy_session.cc
+++ b/net/quic/core/quic_spdy_session.cc
@@ -628,7 +628,8 @@ void QuicSpdySession::OnConfigNegotiated() {
DisableHpackDynamicTable();
}
const QuicVersion version = connection()->version();
- if (FLAGS_quic_reloadable_flag_quic_enable_force_hol_blocking &&
+ if (!use_stream_notifier() &&
+ FLAGS_quic_reloadable_flag_quic_enable_force_hol_blocking &&
version == QUIC_VERSION_36 && config()->ForceHolBlocking(perspective())) {
force_hol_blocking_ = true;
// Since all streams are tunneled through the headers stream, it
« no previous file with comments | « net/quic/core/quic_session_test.cc ('k') | net/tools/quic/end_to_end_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698