Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(13)

Unified Diff: components/data_reduction_proxy/core/browser/data_reduction_proxy_mutable_config_values.cc

Issue 1871783002: Remove the Data Reduction Proxy TLS experiment code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698