| Index: net/http/http_proxy_client_socket_wrapper.h
|
| diff --git a/net/http/http_proxy_client_socket_wrapper.h b/net/http/http_proxy_client_socket_wrapper.h
|
| index f8010e6cc6b2f8f48521799622dda408798a9566..70e3882be68eee5b8440abe55037068d39c53aed 100644
|
| --- a/net/http/http_proxy_client_socket_wrapper.h
|
| +++ b/net/http/http_proxy_client_socket_wrapper.h
|
| @@ -5,9 +5,11 @@
|
| #ifndef NET_HTTP_HTTP_PROXY_CLIENT_SOCKET_WRAPPER_H_
|
| #define NET_HTTP_HTTP_PROXY_CLIENT_SOCKET_WRAPPER_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| #include <string>
|
|
|
| -#include "base/basictypes.h"
|
| +#include "base/macros.h"
|
| #include "base/memory/ref_counted.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/time/time.h"
|
| @@ -110,8 +112,8 @@ class HttpProxyClientSocketWrapper : 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;
|
|
|
|
|