| Index: net/tools/quic/quic_client.cc
 | 
| diff --git a/net/tools/quic/quic_client.cc b/net/tools/quic/quic_client.cc
 | 
| index 29d11bc5b177f8a469338d9c818eae961547e14c..000a686a52e649210e13e76bea82e466604d47da 100644
 | 
| --- a/net/tools/quic/quic_client.cc
 | 
| +++ b/net/tools/quic/quic_client.cc
 | 
| @@ -12,7 +12,6 @@
 | 
|  #include <unistd.h>
 | 
|  
 | 
|  #include "base/logging.h"
 | 
| -#include "net/quic/congestion_control/tcp_receiver.h"
 | 
|  #include "net/quic/crypto/quic_random.h"
 | 
|  #include "net/quic/quic_connection.h"
 | 
|  #include "net/quic/quic_data_reader.h"
 | 
| @@ -138,12 +137,11 @@ bool QuicClient::CreateUDPSocket() {
 | 
|    }
 | 
|  
 | 
|    if (!QuicSocketUtils::SetReceiveBufferSize(fd_,
 | 
| -                                             TcpReceiver::kReceiveWindowTCP)) {
 | 
| +                                             kDefaultSocketReceiveBuffer)) {
 | 
|      return false;
 | 
|    }
 | 
|  
 | 
| -  if (!QuicSocketUtils::SetSendBufferSize(fd_,
 | 
| -                                          TcpReceiver::kReceiveWindowTCP)) {
 | 
| +  if (!QuicSocketUtils::SetSendBufferSize(fd_, kDefaultSocketReceiveBuffer)) {
 | 
|      return false;
 | 
|    }
 | 
|  
 | 
| 
 |