| 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
|
|
|