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

Unified Diff: net/quic/quic_stream_sequencer.cc

Issue 308363002: Remove unnecessary MaybeSendWindowUpdate from ReliableQuicStream: always (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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 | « no previous file | net/quic/reliable_quic_stream.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_stream_sequencer.cc
diff --git a/net/quic/quic_stream_sequencer.cc b/net/quic/quic_stream_sequencer.cc
index 61b4f7cf337990e90040e7042a9bce9624ffa64a..ad0917ac730b2f3e813586b4aa2c0e646c463971 100644
--- a/net/quic/quic_stream_sequencer.cc
+++ b/net/quic/quic_stream_sequencer.cc
@@ -68,7 +68,6 @@ bool QuicStreamSequencer::OnStreamFrame(const QuicStreamFrame& frame) {
}
num_bytes_consumed_ += bytes_consumed;
stream_->AddBytesConsumed(bytes_consumed);
- stream_->MaybeSendWindowUpdate();
if (MaybeCloseStream()) {
return true;
@@ -249,7 +248,6 @@ void QuicStreamSequencer::RecordBytesConsumed(size_t bytes_consumed) {
stream_->AddBytesConsumed(bytes_consumed);
stream_->RemoveBytesBuffered(bytes_consumed);
- stream_->MaybeSendWindowUpdate();
}
} // namespace net
« no previous file with comments | « no previous file | net/quic/reliable_quic_stream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698