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

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

Issue 1889873005: Record Lo-Fi NQE prediction accuracy at different intervals (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed asvitkine comments 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_test_utils.cc
diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_test_utils.cc b/components/data_reduction_proxy/core/browser/data_reduction_proxy_test_utils.cc
index 8b6f768042fc3bf244ce29d6c055462228e1df03..4b0d00033735e5c14e3f82dfc6154a400fb87d1b 100644
--- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_test_utils.cc
+++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_test_utils.cc
@@ -416,16 +416,16 @@ DataReductionProxyTestContext::Builder::Build() {
DataReductionProxyMutableConfigValues::CreateFromParams(params.get());
raw_mutable_config = mutable_config.get();
config.reset(new TestDataReductionProxyConfig(
- std::move(mutable_config), net_log.get(), configurator.get(),
- event_creator.get()));
+ std::move(mutable_config), task_runner, net_log.get(),
+ configurator.get(), event_creator.get()));
} else if (use_mock_config_) {
test_context_flags |= USE_MOCK_CONFIG;
config.reset(new MockDataReductionProxyConfig(
- std::move(params), net_log.get(), configurator.get(),
+ std::move(params), task_runner, net_log.get(), configurator.get(),
event_creator.get()));
} else {
config.reset(new TestDataReductionProxyConfig(
- std::move(params), net_log.get(), configurator.get(),
+ std::move(params), task_runner, net_log.get(), configurator.get(),
event_creator.get()));
}

Powered by Google App Engine
This is Rietveld 408576698