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

Unified Diff: net/quic/reliable_quic_stream.cc

Issue 839143002: Roll Chrome into Mojo. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 11 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
Index: net/quic/reliable_quic_stream.cc
diff --git a/net/quic/reliable_quic_stream.cc b/net/quic/reliable_quic_stream.cc
index a4b90b7b140063f282347837f3a51101f8a18b59..6a2b8c7820749105db36a25d2c73967853766ae5 100644
--- a/net/quic/reliable_quic_stream.cc
+++ b/net/quic/reliable_quic_stream.cc
@@ -42,7 +42,7 @@ size_t GetReceivedFlowControlWindow(QuicSession* session) {
return session->config()->ReceivedInitialFlowControlWindowBytes();
}
- return kDefaultFlowControlSendWindow;
+ return kMinimumFlowControlSendWindow;
}
// Version must be >= QUIC_VERSION_21, so we check for stream specific flow
@@ -51,7 +51,7 @@ size_t GetReceivedFlowControlWindow(QuicSession* session) {
return session->config()->ReceivedInitialStreamFlowControlWindowBytes();
}
- return kDefaultFlowControlSendWindow;
+ return kMinimumFlowControlSendWindow;
}
} // namespace

Powered by Google App Engine
This is Rietveld 408576698