Index: net/spdy/spdy_proxy_client_socket.cc |
diff --git a/net/spdy/spdy_proxy_client_socket.cc b/net/spdy/spdy_proxy_client_socket.cc |
index 7874e47d1255156a117ace14a2e2c8d65f1e79d0..74e6d7489ebe75c13df80e048dd1441833797b33 100644 |
--- a/net/spdy/spdy_proxy_client_socket.cc |
+++ b/net/spdy/spdy_proxy_client_socket.cc |
@@ -237,16 +237,16 @@ int SpdyProxyClientSocket::Write(IOBuffer* buf, int buf_len, |
return ERR_IO_PENDING; |
} |
-bool SpdyProxyClientSocket::SetReceiveBufferSize(int32 size) { |
+int SpdyProxyClientSocket::SetReceiveBufferSize(int32 size) { |
// Since this StreamSocket sits on top of a shared SpdySession, it |
- // is not safe for callers to set change this underlying socket. |
- return false; |
+ // is not safe for callers to change this underlying socket. |
+ return ERR_NOT_IMPLEMENTED; |
} |
-bool SpdyProxyClientSocket::SetSendBufferSize(int32 size) { |
+int SpdyProxyClientSocket::SetSendBufferSize(int32 size) { |
// Since this StreamSocket sits on top of a shared SpdySession, it |
- // is not safe for callers to set change this underlying socket. |
- return false; |
+ // is not safe for callers to change this underlying socket. |
+ return ERR_NOT_IMPLEMENTED; |
} |
int SpdyProxyClientSocket::GetPeerAddress(IPEndPoint* address) const { |