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 a0f1e7c60f8ba52f2c91baba2a0085150df5911c..0d9c3288674ccc1a2bbee7abc4058b31aca25bf4 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 |
@@ -40,13 +40,12 @@ DataReductionProxyIOData::DataReductionProxyIOData( |
DCHECK(ui_task_runner_.get()); |
scoped_ptr<DataReductionProxyParams> params( |
new DataReductionProxyParams(param_flags)); |
- params->EnableQuic(enable_quic); |
event_store_.reset(new DataReductionProxyEventStore(ui_task_runner)); |
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())); |
+ configurator_.get(), event_store_.get(), enable_quic)); |
request_options_.reset(new DataReductionProxyRequestOptions( |
client_, config_.get(), io_task_runner_)); |
request_options_->Init(); |