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

Unified Diff: net/quic/quic_write_blocked_list.h

Issue 1531543004: Fix a bug protected by gfe2_reloadable_flag_quic_respect_send_alarm where acks would not be sent im… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@110021608
Patch Set: Created 5 years 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') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_write_blocked_list.h
diff --git a/net/quic/quic_write_blocked_list.h b/net/quic/quic_write_blocked_list.h
index 53d3e353e245cd0bf55df2f76c7f8055c1bd2e5a..869782edbbac2206d6bd386c8837bf45d211a3b7 100644
--- a/net/quic/quic_write_blocked_list.h
+++ b/net/quic/quic_write_blocked_list.h
@@ -125,7 +125,7 @@ class NET_EXPORT_PRIVATE QuicWriteBlockedList {
// If a batch write stream was set, it should only be preempted by the
// crypto or headers streams. Any higher priority data stream would
// *become* the new batch write stream.
- if (FLAGS_quic_respect_send_alarm && FLAGS_quic_batch_writes) {
+ if (FLAGS_quic_respect_send_alarm2 && FLAGS_quic_batch_writes) {
DCHECK(stream_id == kCryptoStreamId || stream_id == kHeadersStreamId ||
batch_write_stream_id_[last_priority_popped_] == 0 ||
bytes == 0);
« no previous file with comments | « net/quic/quic_flags.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698