| 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 bbd51eaf7625abab7e52bf8b80ea4ba12378aa4e..71d206e262ac18329d6267a954c12ac4d94040d7 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
|
| @@ -8,6 +8,7 @@
|
| #include "base/command_line.h"
|
| #include "base/prefs/pref_member.h"
|
| #include "base/single_thread_task_runner.h"
|
| +#include "components/data_reduction_proxy/core/browser/data_reduction_proxy_auth_request_handler.h"
|
| #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_bypass_protocol.h"
|
| #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_configurator.h"
|
| #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_delegate.h"
|
| @@ -41,14 +42,14 @@ DataReductionProxyIOData::DataReductionProxyIOData(
|
| DCHECK(io_task_runner_.get());
|
| DCHECK(ui_task_runner_.get());
|
| params_ = settings->params()->Clone();
|
| - request_options_.reset(new DataReductionProxyRequestOptions(
|
| + auth_request_handler_.reset(new DataReductionProxyAuthRequestHandler(
|
| client_, params_.get(), io_task_runner_));
|
| event_store_.reset(new DataReductionProxyEventStore(ui_task_runner));
|
| configurator_.reset(new DataReductionProxyConfigurator(
|
| io_task_runner, net_log, event_store_.get()));
|
| proxy_delegate_.reset(
|
| new data_reduction_proxy::DataReductionProxyDelegate(
|
| - request_options_.get(), params_.get()));
|
| + auth_request_handler_.get(), params_.get()));
|
| }
|
|
|
| DataReductionProxyIOData::~DataReductionProxyIOData() {
|
| @@ -103,7 +104,7 @@ DataReductionProxyIOData::CreateNetworkDelegate(
|
| scoped_ptr<DataReductionProxyNetworkDelegate> network_delegate(
|
| new DataReductionProxyNetworkDelegate(
|
| wrapped_network_delegate.Pass(), params_.get(),
|
| - request_options_.get(), configurator_.get()));
|
| + auth_request_handler_.get(), configurator_.get()));
|
| if (track_proxy_bypass_statistics && !usage_stats_) {
|
| usage_stats_.reset(
|
| new data_reduction_proxy::DataReductionProxyUsageStats(
|
|
|