| Index: content/child/weburlresponse_extradata_impl.h
|
| diff --git a/content/child/weburlresponse_extradata_impl.h b/content/child/weburlresponse_extradata_impl.h
|
| index 9ff55f9035ad4a8fb7d3691f81a036be6211aae6..000c9baa52a41008a78a3c6be824105b5a603c55 100644
|
| --- a/content/child/weburlresponse_extradata_impl.h
|
| +++ b/content/child/weburlresponse_extradata_impl.h
|
| @@ -27,24 +27,6 @@ class CONTENT_EXPORT WebURLResponseExtraDataImpl :
|
| return alpn_negotiated_protocol_;
|
| }
|
|
|
| - // Flag whether this request was loaded via an explicit proxy
|
| - // (HTTP, SOCKS, etc).
|
| - bool was_fetched_via_proxy() const {
|
| - return was_fetched_via_proxy_;
|
| - }
|
| - void set_was_fetched_via_proxy(bool was_fetched_via_proxy) {
|
| - was_fetched_via_proxy_ = was_fetched_via_proxy;
|
| - }
|
| -
|
| - // The proxy server used if this request was loaded via an explicit proxy
|
| - // (HTTP, SOCKS, etc).
|
| - net::HostPortPair proxy_server() const {
|
| - return proxy_server_;
|
| - }
|
| - void set_proxy_server(net::HostPortPair proxy_server) {
|
| - proxy_server_ = proxy_server;
|
| - }
|
| -
|
| /// Flag whether this request was loaded via the SPDY protocol or not.
|
| // SPDY is an experimental web protocol, see http://dev.chromium.org/spdy
|
| bool was_fetched_via_spdy() const {
|
| @@ -100,8 +82,6 @@ class CONTENT_EXPORT WebURLResponseExtraDataImpl :
|
| private:
|
| std::string alpn_negotiated_protocol_;
|
| bool is_ftp_directory_listing_;
|
| - bool was_fetched_via_proxy_;
|
| - net::HostPortPair proxy_server_;
|
| bool was_fetched_via_spdy_;
|
| bool was_alpn_negotiated_;
|
| net::HttpResponseInfo::ConnectionInfo connection_info_;
|
|
|