| Index: components/data_reduction_proxy/core/browser/data_reduction_proxy_mutable_config_values.cc
|
| diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_mutable_config_values.cc b/components/data_reduction_proxy/core/browser/data_reduction_proxy_mutable_config_values.cc
|
| index 835f6725fa338e3b29a96aaf1e8107ca8a782b80..e18fb6799b624a3a6d757be3ff1b1521e8112836 100644
|
| --- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_mutable_config_values.cc
|
| +++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_mutable_config_values.cc
|
| @@ -57,11 +57,6 @@ bool DataReductionProxyMutableConfigValues::fallback_allowed() const {
|
| return fallback_allowed_;
|
| }
|
|
|
| -bool DataReductionProxyMutableConfigValues::UsingHTTPTunnel(
|
| - const net::HostPortPair& proxy_server) const {
|
| - return false;
|
| -}
|
| -
|
| const std::vector<net::ProxyServer>&
|
| DataReductionProxyMutableConfigValues::proxies_for_http() const {
|
| DCHECK(thread_checker_.CalledOnValidThread());
|
| @@ -78,12 +73,6 @@ DataReductionProxyMutableConfigValues::proxies_for_http() const {
|
| return proxies_for_http_;
|
| }
|
|
|
| -const std::vector<net::ProxyServer>&
|
| -DataReductionProxyMutableConfigValues::proxies_for_https() const {
|
| - DCHECK(thread_checker_.CalledOnValidThread());
|
| - return proxies_for_https_;
|
| -}
|
| -
|
| const GURL& DataReductionProxyMutableConfigValues::secure_proxy_check_url()
|
| const {
|
| return secure_proxy_check_url_;
|
| @@ -98,7 +87,6 @@ void DataReductionProxyMutableConfigValues::UpdateValues(
|
| void DataReductionProxyMutableConfigValues::Invalidate() {
|
| DCHECK(thread_checker_.CalledOnValidThread());
|
| proxies_for_http_.clear();
|
| - proxies_for_https_.clear();
|
| }
|
|
|
| } // namespace data_reduction_proxy
|
|
|