| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_NET_SPDYPROXY_DATA_REDUCTION_PROXY_CHROME_SETTINGS_H_ | 5 #ifndef CHROME_BROWSER_NET_SPDYPROXY_DATA_REDUCTION_PROXY_CHROME_SETTINGS_H_ |
| 6 #define CHROME_BROWSER_NET_SPDYPROXY_DATA_REDUCTION_PROXY_CHROME_SETTINGS_H_ | 6 #define CHROME_BROWSER_NET_SPDYPROXY_DATA_REDUCTION_PROXY_CHROME_SETTINGS_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/macros.h" |
| 10 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_requ
est_options.h" | 11 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_requ
est_options.h" |
| 11 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_sett
ings.h" | 12 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_sett
ings.h" |
| 12 #include "components/keyed_service/core/keyed_service.h" | 13 #include "components/keyed_service/core/keyed_service.h" |
| 13 | 14 |
| 14 class PrefService; | 15 class PrefService; |
| 15 | 16 |
| 16 namespace base { | 17 namespace base { |
| 17 class SequencedTaskRunner; | 18 class SequencedTaskRunner; |
| 18 class SingleThreadTaskRunner; | 19 class SingleThreadTaskRunner; |
| 19 } | 20 } |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 // migration action taken. | 89 // migration action taken. |
| 89 ProxyPrefMigrationResult MigrateDataReductionProxyOffProxyPrefsHelper( | 90 ProxyPrefMigrationResult MigrateDataReductionProxyOffProxyPrefsHelper( |
| 90 PrefService* prefs); | 91 PrefService* prefs); |
| 91 | 92 |
| 92 std::string data_reduction_proxy_enabled_pref_name_; | 93 std::string data_reduction_proxy_enabled_pref_name_; |
| 93 | 94 |
| 94 DISALLOW_COPY_AND_ASSIGN(DataReductionProxyChromeSettings); | 95 DISALLOW_COPY_AND_ASSIGN(DataReductionProxyChromeSettings); |
| 95 }; | 96 }; |
| 96 | 97 |
| 97 #endif // CHROME_BROWSER_NET_SPDYPROXY_DATA_REDUCTION_PROXY_CHROME_SETTINGS_H_ | 98 #endif // CHROME_BROWSER_NET_SPDYPROXY_DATA_REDUCTION_PROXY_CHROME_SETTINGS_H_ |
| OLD | NEW |