Chromium Code Reviews| Index: components/data_reduction_proxy/browser/data_reduction_proxy_settings.h |
| diff --git a/components/data_reduction_proxy/browser/data_reduction_proxy_settings.h b/components/data_reduction_proxy/browser/data_reduction_proxy_settings.h |
| index 804023bc2ac076c18fc9a074a0995ead55067c54..5398788346c90daa61053ce0ba0ff7d61d0e0dd0 100644 |
| --- a/components/data_reduction_proxy/browser/data_reduction_proxy_settings.h |
| +++ b/components/data_reduction_proxy/browser/data_reduction_proxy_settings.h |
| @@ -12,10 +12,12 @@ |
| #include "base/compiler_specific.h" |
| #include "base/gtest_prod_util.h" |
| #include "base/memory/scoped_ptr.h" |
| +#include "base/memory/weak_ptr.h" |
|
bengr
2014/08/28 21:38:35
Do you need this?
megjablon
2014/08/30 01:10:04
not anymore!
|
| #include "base/prefs/pref_member.h" |
| #include "base/threading/thread_checker.h" |
| #include "components/data_reduction_proxy/browser/data_reduction_proxy_configurator.h" |
| #include "components/data_reduction_proxy/browser/data_reduction_proxy_params.h" |
| +#include "components/data_reduction_proxy/browser/data_reduction_proxy_statistics_prefs.h" |
| #include "net/base/net_util.h" |
| #include "net/base/network_change_notifier.h" |
| #include "net/url_request/url_fetcher_delegate.h" |
| @@ -103,7 +105,6 @@ class DataReductionProxySettings |
| // |DataReductionProxySettings| instance. |
| void InitDataReductionProxySettings( |
| PrefService* prefs, |
| - PrefService* local_state_prefs, |
| net::URLRequestContextGetter* url_request_context_getter); |
| // Initializes the data reduction proxy with profile and local state prefs, |
| @@ -113,10 +114,14 @@ class DataReductionProxySettings |
| // TODO(marq): Remove when iOS supports the new interface above. |
| void InitDataReductionProxySettings( |
| PrefService* prefs, |
| - PrefService* local_state_prefs, |
| net::URLRequestContextGetter* url_request_context_getter, |
| DataReductionProxyConfigurator* configurator); |
| + // Sets the |statistics_prefs_| to be used for data reduction |
|
bengr
2014/08/28 21:38:35
Move up as much of the next line as you can and st
megjablon
2014/08/30 01:10:04
Done.
|
| + // proxy pref reads and writes |
| + void SetDataReductionProxyStatisticsPrefs( |
| + DataReductionProxyStatisticsPrefs* statistics_prefs); |
| + |
| // Sets the |on_data_reduction_proxy_enabled_| callback and runs to register |
| // the DataReductionProxyEnabled synthetic field trial. |
| void SetOnDataReductionEnabledCallback( |
| @@ -190,7 +195,6 @@ class DataReductionProxySettings |
| // Virtualized for unit test support. |
| virtual PrefService* GetOriginalProfilePrefs(); |
| - virtual PrefService* GetLocalStatePrefs(); |
| // Sets the proxy configs, enabling or disabling the proxy according to |
| // the value of |enabled| and |alternative_enabled|. Use the alternative |
| @@ -307,7 +311,7 @@ class DataReductionProxySettings |
| BooleanPrefMember data_reduction_proxy_alternative_enabled_; |
| PrefService* prefs_; |
| - PrefService* local_state_prefs_; |
| + DataReductionProxyStatisticsPrefs* statistics_prefs_; |
| net::URLRequestContextGetter* url_request_context_getter_; |