| 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 COMPONENTS_DATA_REDUCTION_PROXY_CORE_COMMON_DATA_REDUCTION_PROXY_PARAMS_
H_ | 5 #ifndef COMPONENTS_DATA_REDUCTION_PROXY_CORE_COMMON_DATA_REDUCTION_PROXY_PARAMS_
H_ |
| 6 #define COMPONENTS_DATA_REDUCTION_PROXY_CORE_COMMON_DATA_REDUCTION_PROXY_PARAMS_
H_ | 6 #define COMPONENTS_DATA_REDUCTION_PROXY_CORE_COMMON_DATA_REDUCTION_PROXY_PARAMS_
H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "base/strings/string_piece.h" | 12 #include "base/strings/string_piece.h" |
| 13 #include "components/data_reduction_proxy/core/common/data_reduction_proxy_confi
g_values.h" | 13 #include "components/data_reduction_proxy/core/common/data_reduction_proxy_confi
g_values.h" |
| 14 #include "net/proxy/proxy_server.h" | 14 #include "net/proxy/proxy_server.h" |
| 15 #include "url/gurl.h" | 15 #include "url/gurl.h" |
| 16 | 16 |
| 17 namespace base { | |
| 18 class TimeDelta; | |
| 19 } | |
| 20 | |
| 21 namespace net { | 17 namespace net { |
| 22 class HostPortPair; | |
| 23 class ProxyServer; | 18 class ProxyServer; |
| 24 } | 19 } |
| 25 | 20 |
| 26 namespace data_reduction_proxy { | 21 namespace data_reduction_proxy { |
| 27 | 22 |
| 28 // The data_reduction_proxy::params namespace is a collection of methods to | 23 // The data_reduction_proxy::params namespace is a collection of methods to |
| 29 // determine the operating parameters of the Data Reduction Proxy as specified | 24 // determine the operating parameters of the Data Reduction Proxy as specified |
| 30 // by field trials and command line switches. | 25 // by field trials and command line switches. |
| 31 namespace params { | 26 namespace params { |
| 32 | 27 |
| (...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 | 246 |
| 252 bool use_override_proxies_for_http_; | 247 bool use_override_proxies_for_http_; |
| 253 std::vector<net::ProxyServer> override_proxies_for_http_; | 248 std::vector<net::ProxyServer> override_proxies_for_http_; |
| 254 | 249 |
| 255 DISALLOW_COPY_AND_ASSIGN(DataReductionProxyParams); | 250 DISALLOW_COPY_AND_ASSIGN(DataReductionProxyParams); |
| 256 }; | 251 }; |
| 257 | 252 |
| 258 } // namespace data_reduction_proxy | 253 } // namespace data_reduction_proxy |
| 259 | 254 |
| 260 #endif // COMPONENTS_DATA_REDUCTION_PROXY_CORE_COMMON_DATA_REDUCTION_PROXY_PARA
MS_H_ | 255 #endif // COMPONENTS_DATA_REDUCTION_PROXY_CORE_COMMON_DATA_REDUCTION_PROXY_PARA
MS_H_ |
| OLD | NEW |