| 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 32e1400e01035cd24a983e716f0658b6eae7360f..0d62ce7a500846f364ef6fa83e414370aa3140a0 100644
|
| --- a/net/spdy/spdy_proxy_client_socket.cc
|
| +++ b/net/spdy/spdy_proxy_client_socket.cc
|
| @@ -512,6 +512,11 @@ int SpdyProxyClientSocket::OnResponseReceived(
|
| return OK;
|
| }
|
|
|
| +void SpdyProxyClientSocket::OnHeadersSent() {
|
| + // Proxy client sockets don't send any HEADERS frame.
|
| + NOTREACHED();
|
| +}
|
| +
|
| // Called when data is received.
|
| int SpdyProxyClientSocket::OnDataReceived(const char* data, int length) {
|
| if (length > 0) {
|
|
|