| Index: net/spdy/spdy_proxy_client_socket.h
 | 
| diff --git a/net/spdy/spdy_proxy_client_socket.h b/net/spdy/spdy_proxy_client_socket.h
 | 
| index df9c21c1d2bf6c300e65f5addcd7fa417255dd51..9dc9cff15be0eb842a1579627cc37b92edbbb465 100644
 | 
| --- a/net/spdy/spdy_proxy_client_socket.h
 | 
| +++ b/net/spdy/spdy_proxy_client_socket.h
 | 
| @@ -5,12 +5,13 @@
 | 
|  #ifndef NET_SPDY_SPDY_PROXY_CLIENT_SOCKET_H_
 | 
|  #define NET_SPDY_SPDY_PROXY_CLIENT_SOCKET_H_
 | 
|  
 | 
| +#include <stddef.h>
 | 
|  #include <stdint.h>
 | 
|  
 | 
|  #include <list>
 | 
|  #include <string>
 | 
|  
 | 
| -#include "base/basictypes.h"
 | 
| +#include "base/macros.h"
 | 
|  #include "base/memory/ref_counted.h"
 | 
|  #include "base/memory/weak_ptr.h"
 | 
|  #include "net/base/completion_callback.h"
 | 
| @@ -85,8 +86,8 @@ class NET_EXPORT_PRIVATE SpdyProxyClientSocket : public ProxyClientSocket,
 | 
|    int Write(IOBuffer* buf,
 | 
|              int buf_len,
 | 
|              const CompletionCallback& callback) override;
 | 
| -  int SetReceiveBufferSize(int32 size) override;
 | 
| -  int SetSendBufferSize(int32 size) override;
 | 
| +  int SetReceiveBufferSize(int32_t size) override;
 | 
| +  int SetSendBufferSize(int32_t size) override;
 | 
|    int GetPeerAddress(IPEndPoint* address) const override;
 | 
|    int GetLocalAddress(IPEndPoint* address) const override;
 | 
|  
 | 
| 
 |