| 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 0d9c3288674ccc1a2bbee7abc4058b31aca25bf4..f0dc97d92966cf130ddaf737a8e9610e1e11da51 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
|
| @@ -27,6 +27,7 @@ DataReductionProxyIOData::DataReductionProxyIOData(
|
| const Client& client,
|
| int param_flags,
|
| net::NetLog* net_log,
|
| + net::URLRequestContextGetter* request_context_getter,
|
| scoped_refptr<base::SingleThreadTaskRunner> io_task_runner,
|
| scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner,
|
| bool enable_quic)
|
| @@ -44,8 +45,9 @@ DataReductionProxyIOData::DataReductionProxyIOData(
|
| configurator_.reset(new DataReductionProxyConfigurator(
|
| io_task_runner, net_log, event_store_.get()));
|
| config_.reset(new DataReductionProxyConfig(
|
| - io_task_runner_, ui_task_runner_, net_log, params.Pass(),
|
| - configurator_.get(), event_store_.get(), enable_quic));
|
| + request_context_getter, io_task_runner_, ui_task_runner_,
|
| + net_log, params.Pass(), configurator_.get(), event_store_.get(),
|
| + enable_quic));
|
| request_options_.reset(new DataReductionProxyRequestOptions(
|
| client_, config_.get(), io_task_runner_));
|
| request_options_->Init();
|
|
|