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

Unified Diff: components/data_reduction_proxy/core/browser/data_reduction_proxy_configurator_test_utils.h

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_configurator_test_utils.h
diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_configurator_test_utils.h b/components/data_reduction_proxy/core/browser/data_reduction_proxy_configurator_test_utils.h
index ac7093cf414aedd113cc56a91e6fc457803de45d..ba982b6fc4400760c746e28594ce9a284cd902eb 100644
--- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_configurator_test_utils.h
+++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_configurator_test_utils.h
@@ -29,8 +29,7 @@ class TestDataReductionProxyConfigurator
// Overrides of DataReductionProxyConfigurator
void Enable(bool secure_transport_restricted,
- const std::vector<net::ProxyServer>& proxies_for_http,
- const std::vector<net::ProxyServer>& proxies_for_https) override;
+ const std::vector<net::ProxyServer>& proxies_for_http) override;
void Disable() override;
@@ -50,10 +49,6 @@ class TestDataReductionProxyConfigurator
return proxies_for_http_;
}
- const std::vector<net::ProxyServer>& proxies_for_https() const {
- return proxies_for_https_;
- }
-
private:
// True if the proxy has been enabled, i.e., only after |Enable| has been
// called. Defaults to false.
@@ -66,7 +61,6 @@ class TestDataReductionProxyConfigurator
// The origins that are passed to |Enable|.
std::vector<net::ProxyServer> proxies_for_http_;
- std::vector<net::ProxyServer> proxies_for_https_;
};
} // namespace data_reduction_proxy

Powered by Google App Engine
This is Rietveld 408576698