| Index: net/http/http_proxy_client_socket_wrapper.cc
|
| diff --git a/net/http/http_proxy_client_socket_wrapper.cc b/net/http/http_proxy_client_socket_wrapper.cc
|
| index d69ed3443ffced32a9398a3053b0ee5d8a163d93..fef16e39ba878be23c144319e7b2530921c1bbf5 100644
|
| --- a/net/http/http_proxy_client_socket_wrapper.cc
|
| +++ b/net/http/http_proxy_client_socket_wrapper.cc
|
| @@ -294,7 +294,7 @@ int HttpProxyClientSocketWrapper::Write(IOBuffer* buf,
|
| return ERR_SOCKET_NOT_CONNECTED;
|
| }
|
|
|
| -int HttpProxyClientSocketWrapper::SetReceiveBufferSize(int32 size) {
|
| +int HttpProxyClientSocketWrapper::SetReceiveBufferSize(int32_t size) {
|
| // TODO(mmenke): Should this persist across reconnects? Seems a little
|
| // weird, and not done for normal reconnects.
|
| if (transport_socket_)
|
| @@ -302,7 +302,7 @@ int HttpProxyClientSocketWrapper::SetReceiveBufferSize(int32 size) {
|
| return ERR_SOCKET_NOT_CONNECTED;
|
| }
|
|
|
| -int HttpProxyClientSocketWrapper::SetSendBufferSize(int32 size) {
|
| +int HttpProxyClientSocketWrapper::SetSendBufferSize(int32_t size) {
|
| if (transport_socket_)
|
| return transport_socket_->SetSendBufferSize(size);
|
| return ERR_SOCKET_NOT_CONNECTED;
|
|
|