| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 COMPONENTS_DATA_REDUCTION_PROXY_CORE_BROWSER_DATA_REDUCTION_PROXY_IO_DAT
A_H_ | 5 #ifndef COMPONENTS_DATA_REDUCTION_PROXY_CORE_BROWSER_DATA_REDUCTION_PROXY_IO_DAT
A_H_ |
| 6 #define COMPONENTS_DATA_REDUCTION_PROXY_CORE_BROWSER_DATA_REDUCTION_PROXY_IO_DAT
A_H_ | 6 #define COMPONENTS_DATA_REDUCTION_PROXY_CORE_BROWSER_DATA_REDUCTION_PROXY_IO_DAT
A_H_ |
| 7 | 7 |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
| 10 #include "base/prefs/pref_member.h" | 10 #include "base/prefs/pref_member.h" |
| 11 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_debu
g_ui_service.h" | 11 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_debu
g_ui_service.h" |
| 12 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_dele
gate.h" | 12 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_dele
gate.h" |
| 13 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_netw
ork_delegate.h" | 13 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_netw
ork_delegate.h" |
| 14 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_requ
est_options.h" | 14 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_requ
est_options.h" |
| 15 | 15 |
| 16 namespace net { | 16 namespace net { |
| 17 class NetLog; | 17 class NetLog; |
| 18 class URLRequestInterceptor; | 18 class URLRequestInterceptor; |
| 19 } | 19 } |
| 20 | 20 |
| 21 namespace data_reduction_proxy { | 21 namespace data_reduction_proxy { |
| 22 | 22 |
| 23 class DataReductionProxyConfig; | 23 class DataReductionProxyConfig; |
| 24 class DataReductionProxyConfigServiceClient; | 24 class DataReductionProxyConfigServiceClient; |
| 25 class DataReductionProxyConfigurator; | 25 class DataReductionProxyConfigurator; |
| 26 class DataReductionProxyEventStore; | 26 class DataReductionProxyEventStore; |
| 27 class DataReductionProxyService; | 27 class DataReductionProxyService; |
| 28 class DataReductionProxyStatisticsPrefs; | |
| 29 class DataReductionProxyBypassStats; | 28 class DataReductionProxyBypassStats; |
| 30 | 29 |
| 31 // Contains and initializes all Data Reduction Proxy objects that operate on | 30 // Contains and initializes all Data Reduction Proxy objects that operate on |
| 32 // the IO thread. | 31 // the IO thread. |
| 33 class DataReductionProxyIOData { | 32 class DataReductionProxyIOData { |
| 34 public: | 33 public: |
| 35 // Constructs a DataReductionProxyIOData object. |param_flags| is used to | 34 // Constructs a DataReductionProxyIOData object. |param_flags| is used to |
| 36 // set information about the DNS names used by the proxy, and allowable | 35 // set information about the DNS names used by the proxy, and allowable |
| 37 // configurations. | 36 // configurations. |
| 38 DataReductionProxyIOData( | 37 DataReductionProxyIOData( |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 // Preference that determines if the Data Reduction Proxy has been enabled | 166 // Preference that determines if the Data Reduction Proxy has been enabled |
| 168 // by the user. In practice, this can be overridden by the command line. | 167 // by the user. In practice, this can be overridden by the command line. |
| 169 BooleanPrefMember enabled_; | 168 BooleanPrefMember enabled_; |
| 170 | 169 |
| 171 DISALLOW_COPY_AND_ASSIGN(DataReductionProxyIOData); | 170 DISALLOW_COPY_AND_ASSIGN(DataReductionProxyIOData); |
| 172 }; | 171 }; |
| 173 | 172 |
| 174 } // namespace data_reduction_proxy | 173 } // namespace data_reduction_proxy |
| 175 #endif // COMPONENTS_DATA_REDUCTION_PROXY_CORE_BROWSER_DATA_REDUCTION_PROXY_IO_
DATA_H_ | 174 #endif // COMPONENTS_DATA_REDUCTION_PROXY_CORE_BROWSER_DATA_REDUCTION_PROXY_IO_
DATA_H_ |
| 176 | 175 |
| OLD | NEW |