| Index: components/data_reduction_proxy/core/browser/data_reduction_proxy_network_delegate.h
|
| diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_network_delegate.h b/components/data_reduction_proxy/core/browser/data_reduction_proxy_network_delegate.h
|
| index 3b8fbab02cb625b8ba5bf0d94cebc7d280364c9b..7da1858ef63517d71f4d1cfea652e00714d19c8a 100644
|
| --- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_network_delegate.h
|
| +++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_network_delegate.h
|
| @@ -37,9 +37,9 @@ class URLRequest;
|
|
|
| namespace data_reduction_proxy {
|
|
|
| +class DataReductionProxyAuthRequestHandler;
|
| class DataReductionProxyConfigurator;
|
| class DataReductionProxyParams;
|
| -class DataReductionProxyRequestOptions;
|
| class DataReductionProxyStatisticsPrefs;
|
| class DataReductionProxyUsageStats;
|
|
|
| @@ -60,7 +60,7 @@ class DataReductionProxyNetworkDelegate : public net::LayeredNetworkDelegate {
|
| DataReductionProxyNetworkDelegate(
|
| scoped_ptr<net::NetworkDelegate> network_delegate,
|
| DataReductionProxyParams* params,
|
| - DataReductionProxyRequestOptions* handler,
|
| + DataReductionProxyAuthRequestHandler* handler,
|
| const DataReductionProxyConfigurator* configurator);
|
| ~DataReductionProxyNetworkDelegate() override;
|
|
|
| @@ -137,7 +137,8 @@ class DataReductionProxyNetworkDelegate : public net::LayeredNetworkDelegate {
|
| // Must outlive this DataReductionProxyNetworkDelegate.
|
| DataReductionProxyUsageStats* data_reduction_proxy_usage_stats_;
|
|
|
| - DataReductionProxyRequestOptions* data_reduction_proxy_request_options_;
|
| + DataReductionProxyAuthRequestHandler*
|
| + data_reduction_proxy_auth_request_handler_;
|
|
|
| DataReductionProxyStatisticsPrefs* data_reduction_proxy_statistics_prefs_;
|
|
|
|
|