Index: components/data_reduction_proxy/core/browser/data_reduction_proxy_configurator_test_utils.cc |
diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_configurator_test_utils.cc b/components/data_reduction_proxy/core/browser/data_reduction_proxy_configurator_test_utils.cc |
index 8a21aaf8b827225ad6573d5306c6e24b263087d0..cf0956052c334d6f234b0b387c5cd43f5baf2f80 100644 |
--- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_configurator_test_utils.cc |
+++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_configurator_test_utils.cc |
@@ -19,19 +19,16 @@ TestDataReductionProxyConfigurator::~TestDataReductionProxyConfigurator() { |
void TestDataReductionProxyConfigurator::Enable( |
bool secure_transport_restricted, |
- const std::vector<net::ProxyServer>& proxies_for_http, |
- const std::vector<net::ProxyServer>& proxies_for_https) { |
+ const std::vector<net::ProxyServer>& proxies_for_http) { |
enabled_ = true; |
restricted_ = secure_transport_restricted; |
proxies_for_http_ = proxies_for_http; |
- proxies_for_https_ = proxies_for_https; |
} |
void TestDataReductionProxyConfigurator::Disable() { |
enabled_ = false; |
restricted_ = false; |
proxies_for_http_ = std::vector<net::ProxyServer>(); |
- proxies_for_https_ = std::vector<net::ProxyServer>(); |
} |
} // namespace data_reduction_proxy |