| Index: components/data_reduction_proxy/core/browser/data_reduction_proxy_settings.cc
|
| diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_settings.cc b/components/data_reduction_proxy/core/browser/data_reduction_proxy_settings.cc
|
| index 6db23912782f74c9f910a40fd752e353c625c088..4ae17fa37aeb17448063b0ee86b432761c8aa7bb 100644
|
| --- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_settings.cc
|
| +++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_settings.cc
|
| @@ -150,8 +150,8 @@ void DataReductionProxySettings::InitDataReductionProxySettings(
|
| }
|
|
|
| void DataReductionProxySettings::SetDataReductionProxyStatisticsPrefs(
|
| - DataReductionProxyStatisticsPrefs* statistics_prefs) {
|
| - statistics_prefs_ = statistics_prefs;
|
| + scoped_ptr<DataReductionProxyStatisticsPrefs> statistics_prefs) {
|
| + statistics_prefs_ = statistics_prefs.Pass();
|
| }
|
|
|
| void DataReductionProxySettings::SetOnDataReductionEnabledCallback(
|
|
|