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 "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
9 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_auth
_request_handler.h" | 9 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_requ
est_options.h" |
10 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_sett
ings.h" | 10 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_sett
ings.h" |
11 #include "components/keyed_service/core/keyed_service.h" | 11 #include "components/keyed_service/core/keyed_service.h" |
12 | 12 |
13 namespace base { | 13 namespace base { |
14 class PrefService; | 14 class PrefService; |
15 } | 15 } |
16 | 16 |
17 namespace data_reduction_proxy { | 17 namespace data_reduction_proxy { |
18 class DataReductionProxyConfigurator; | 18 class DataReductionProxyConfigurator; |
19 class DataReductionProxyIOData; | 19 class DataReductionProxyIOData; |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 | 55 |
56 private: | 56 private: |
57 // Registers the DataReductionProxyEnabled synthetic field trial with | 57 // Registers the DataReductionProxyEnabled synthetic field trial with |
58 // the group |data_reduction_proxy_enabled|. | 58 // the group |data_reduction_proxy_enabled|. |
59 void RegisterSyntheticFieldTrial(bool data_reduction_proxy_enabled); | 59 void RegisterSyntheticFieldTrial(bool data_reduction_proxy_enabled); |
60 | 60 |
61 DISALLOW_COPY_AND_ASSIGN(DataReductionProxyChromeSettings); | 61 DISALLOW_COPY_AND_ASSIGN(DataReductionProxyChromeSettings); |
62 }; | 62 }; |
63 | 63 |
64 #endif // CHROME_BROWSER_NET_SPDYPROXY_DATA_REDUCTION_PROXY_CHROME_SETTINGS_H_ | 64 #endif // CHROME_BROWSER_NET_SPDYPROXY_DATA_REDUCTION_PROXY_CHROME_SETTINGS_H_ |
OLD | NEW |