| Index: net/tools/quic/quic_client.cc
|
| diff --git a/net/tools/quic/quic_client.cc b/net/tools/quic/quic_client.cc
|
| index 48d8a4e42bd3f04c9d8fe08fe82db96e45ff79a9..6e2b3269ed447974351af33d7127828dcd8f124e 100644
|
| --- a/net/tools/quic/quic_client.cc
|
| +++ b/net/tools/quic/quic_client.cc
|
| @@ -88,8 +88,8 @@ bool QuicClient::Initialize() {
|
|
|
| // If an initial flow control window has not explicitly been set, then use the
|
| // same values that Chrome uses.
|
| - const uint32 kSessionMaxRecvWindowSize = 15 * 1024 * 1024; // 15 MB
|
| - const uint32 kStreamMaxRecvWindowSize = 6 * 1024 * 1024; // 6 MB
|
| + const uint32_t kSessionMaxRecvWindowSize = 15 * 1024 * 1024; // 15 MB
|
| + const uint32_t kStreamMaxRecvWindowSize = 6 * 1024 * 1024; // 6 MB
|
| if (config()->GetInitialStreamFlowControlWindowToSend() ==
|
| kMinimumFlowControlSendWindow) {
|
| config()->SetInitialStreamFlowControlWindowToSend(kStreamMaxRecvWindowSize);
|
|
|