| 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
|
|
|