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 92edf1f3355addcb32dd0569d7b98fc52f2829a1..b5f5cd2e2e500d255286efe1f7ee71ea4e139b2f 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 |