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

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

Issue 893003002: Data Reduction Proxy class ownership updates and Settings cleanup (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: sgurun CR comments Created 5 years, 10 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_interceptor_unittest.cc
diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_interceptor_unittest.cc b/components/data_reduction_proxy/core/browser/data_reduction_proxy_interceptor_unittest.cc
index 2655d4b33dcd3f4326baf562962fa48279b9a3a5..dbebf7602f22e017b215e5106f6d96a6a4c36ef6 100644
--- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_interceptor_unittest.cc
+++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_interceptor_unittest.cc
@@ -190,10 +190,10 @@ class DataReductionProxyInterceptorWithServerTest : public testing::Test {
DataReductionProxyTestContext::DEFAULT_TEST_CONTEXT_OPTIONS));
std::string spec;
base::TrimString(proxy_.GetURL("/").spec(), "/", &spec);
- test_context_->io_data()->test_params()->set_origin(
+ test_context_->config()->test_params()->set_origin(
net::ProxyServer::FromURI(spec, net::ProxyServer::SCHEME_HTTP));
std::string proxy_name =
- test_context_->io_data()->params()->origin().ToURI();
+ test_context_->config()->params()->origin().ToURI();
proxy_service_.reset(
net::ProxyService::CreateFixedFromPacResult(
"PROXY " + proxy_name + "; DIRECT"));

Powered by Google App Engine
This is Rietveld 408576698