| Index: net/socket/tcp_socket_win.h
 | 
| diff --git a/net/socket/tcp_socket_win.h b/net/socket/tcp_socket_win.h
 | 
| index 07c93df6f9027b739d855fd7e35f8bd94859c459..f24ffb801b7fc18abf7ee7fa5e1112aa52ff7811 100644
 | 
| --- a/net/socket/tcp_socket_win.h
 | 
| +++ b/net/socket/tcp_socket_win.h
 | 
| @@ -5,10 +5,11 @@
 | 
|  #ifndef NET_SOCKET_TCP_SOCKET_WIN_H_
 | 
|  #define NET_SOCKET_TCP_SOCKET_WIN_H_
 | 
|  
 | 
| +#include <stdint.h>
 | 
|  #include <winsock2.h>
 | 
|  
 | 
| -#include "base/basictypes.h"
 | 
|  #include "base/compiler_specific.h"
 | 
| +#include "base/macros.h"
 | 
|  #include "base/memory/ref_counted.h"
 | 
|  #include "base/memory/scoped_ptr.h"
 | 
|  #include "base/threading/non_thread_safe.h"
 | 
| @@ -68,8 +69,8 @@ class NET_EXPORT TCPSocketWin : NON_EXPORTED_BASE(public base::NonThreadSafe),
 | 
|    // - SetKeepAlive(true, 45).
 | 
|    void SetDefaultOptionsForClient();
 | 
|    int SetExclusiveAddrUse();
 | 
| -  int SetReceiveBufferSize(int32 size);
 | 
| -  int SetSendBufferSize(int32 size);
 | 
| +  int SetReceiveBufferSize(int32_t size);
 | 
| +  int SetSendBufferSize(int32_t size);
 | 
|    bool SetKeepAlive(bool enable, int delay);
 | 
|    bool SetNoDelay(bool no_delay);
 | 
|  
 | 
| 
 |