| Index: net/http/proxy_connect_redirect_http_stream.cc
|
| diff --git a/net/http/proxy_connect_redirect_http_stream.cc b/net/http/proxy_connect_redirect_http_stream.cc
|
| index 0857a7451ca20442f83cf2df35cf7ffc5968febf..b8be7dbe3401735dece0e60dad3cf01d83e6c9e2 100644
|
| --- a/net/http/proxy_connect_redirect_http_stream.cc
|
| +++ b/net/http/proxy_connect_redirect_http_stream.cc
|
| @@ -18,7 +18,8 @@ ProxyConnectRedirectHttpStream::ProxyConnectRedirectHttpStream(
|
| load_timing_info_ = *load_timing_info;
|
| }
|
|
|
| -ProxyConnectRedirectHttpStream::~ProxyConnectRedirectHttpStream() {}
|
| +ProxyConnectRedirectHttpStream::~ProxyConnectRedirectHttpStream() {
|
| +}
|
|
|
| int ProxyConnectRedirectHttpStream::InitializeStream(
|
| const HttpRequestInfo* request_info,
|
| @@ -43,8 +44,8 @@ int ProxyConnectRedirectHttpStream::ReadResponseHeaders(
|
| return OK;
|
| }
|
|
|
| -const HttpResponseInfo*
|
| -ProxyConnectRedirectHttpStream::GetResponseInfo() const {
|
| +const HttpResponseInfo* ProxyConnectRedirectHttpStream::GetResponseInfo()
|
| + const {
|
| NOTREACHED();
|
| return NULL;
|
| }
|
| @@ -57,7 +58,8 @@ int ProxyConnectRedirectHttpStream::ReadResponseBody(
|
| return OK;
|
| }
|
|
|
| -void ProxyConnectRedirectHttpStream::Close(bool not_reusable) {}
|
| +void ProxyConnectRedirectHttpStream::Close(bool not_reusable) {
|
| +}
|
|
|
| bool ProxyConnectRedirectHttpStream::IsResponseBodyComplete() const {
|
| NOTREACHED();
|
|
|