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

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

Issue 2427663003: Deprecate FLAGS_quic_stream_sequencer_buffer_debug. (Closed)
Patch Set: Fixing a typo in the merge of cr/135720045 Created 4 years, 2 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_flags_list.h ('k') | net/quic/core/quic_stream_sequencer_buffer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/core/quic_stream_sequencer.cc
diff --git a/net/quic/core/quic_stream_sequencer.cc b/net/quic/core/quic_stream_sequencer.cc
index 5ffec7eeb56d8a9ac028182655a7fc80014c3559..dc9193731bc9cf91cc8f6654dd68344fabcf1438 100644
--- a/net/quic/core/quic_stream_sequencer.cc
+++ b/net/quic/core/quic_stream_sequencer.cc
@@ -142,7 +142,7 @@ int QuicStreamSequencer::Readv(const struct iovec* iov, size_t iov_len) {
size_t bytes_read;
QuicErrorCode read_error =
buffered_frames_.Readv(iov, iov_len, &bytes_read, &error_details);
- if (FLAGS_quic_stream_sequencer_buffer_debug && read_error != QUIC_NO_ERROR) {
+ if (read_error != QUIC_NO_ERROR) {
string details = StringPrintf("Stream %" PRIu32 ": %s", stream_->id(),
error_details.c_str());
stream_->CloseConnectionWithDetails(read_error, details);
« no previous file with comments | « net/quic/core/quic_flags_list.h ('k') | net/quic/core/quic_stream_sequencer_buffer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698