| Index: net/tools/quic/quic_server.cc
|
| diff --git a/net/tools/quic/quic_server.cc b/net/tools/quic/quic_server.cc
|
| index 7fd21403fd00b7edf70dcd650bf462577f972162..fc1395b90372bef2a72cf9d04e244d5b9caf72e7 100644
|
| --- a/net/tools/quic/quic_server.cc
|
| +++ b/net/tools/quic/quic_server.cc
|
| @@ -74,8 +74,8 @@ void QuicServer::Initialize() {
|
|
|
| // If an initial flow control window has not explicitly been set, then use a
|
| // sensible value for a server: 1 MB for session, 64 KB for each stream.
|
| - const uint32 kInitialSessionFlowControlWindow = 1 * 1024 * 1024; // 1 MB
|
| - const uint32 kInitialStreamFlowControlWindow = 64 * 1024; // 64 KB
|
| + const uint32_t kInitialSessionFlowControlWindow = 1 * 1024 * 1024; // 1 MB
|
| + const uint32_t kInitialStreamFlowControlWindow = 64 * 1024; // 64 KB
|
| if (config_.GetInitialStreamFlowControlWindowToSend() ==
|
| kMinimumFlowControlSendWindow) {
|
| config_.SetInitialStreamFlowControlWindowToSend(
|
|
|