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

Unified Diff: components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data.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_io_data.cc
diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data.cc b/components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data.cc
index b57de90df0e8199566a74fefa0d340ea3bde8fc1..ae152f62524592fdbb2979cdb6ff486a9efa4a2c 100644
--- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data.cc
+++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data.cc
@@ -124,11 +124,12 @@ DataReductionProxyIOData::DataReductionProxyIOData(
DataReductionProxyMutableConfigValues::CreateFromParams(params.get());
raw_mutable_config = mutable_config.get();
config_.reset(new DataReductionProxyConfig(
- net_log, std::move(mutable_config), configurator_.get(),
+ io_task_runner, net_log, std::move(mutable_config), configurator_.get(),
event_creator_.get()));
} else {
config_.reset(new DataReductionProxyConfig(
- net_log, std::move(params), configurator_.get(), event_creator_.get()));
+ io_task_runner, net_log, std::move(params), configurator_.get(),
+ event_creator_.get()));
}
// It is safe to use base::Unretained here, since it gets executed

Powered by Google App Engine
This is Rietveld 408576698