| 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_BROWSER_DATA_REDUCTION_PROXY_PARAMS
_H_ | 5 #ifndef COMPONENTS_DATA_REDUCTION_PROXY_CORE_BROWSER_DATA_REDUCTION_PROXY_PARAMS
_H_ |
| 6 #define COMPONENTS_DATA_REDUCTION_PROXY_CORE_BROWSER_DATA_REDUCTION_PROXY_PARAMS
_H_ | 6 #define COMPONENTS_DATA_REDUCTION_PROXY_CORE_BROWSER_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 "components/data_reduction_proxy/core/common/data_reduction_proxy_confi
g_values.h" | 12 #include "components/data_reduction_proxy/core/common/data_reduction_proxy_confi
g_values.h" |
| 12 #include "net/proxy/proxy_server.h" | 13 #include "net/proxy/proxy_server.h" |
| 13 #include "url/gurl.h" | 14 #include "url/gurl.h" |
| 14 | 15 |
| 15 namespace base { | 16 namespace base { |
| 16 class TimeDelta; | 17 class TimeDelta; |
| 17 } | 18 } |
| 18 | 19 |
| 19 namespace net { | 20 namespace net { |
| 20 class HostPortPair; | 21 class HostPortPair; |
| (...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 bool configured_on_command_line_; | 253 bool configured_on_command_line_; |
| 253 | 254 |
| 254 bool use_override_proxies_for_http_; | 255 bool use_override_proxies_for_http_; |
| 255 std::vector<net::ProxyServer> override_proxies_for_http_; | 256 std::vector<net::ProxyServer> override_proxies_for_http_; |
| 256 | 257 |
| 257 DISALLOW_COPY_AND_ASSIGN(DataReductionProxyParams); | 258 DISALLOW_COPY_AND_ASSIGN(DataReductionProxyParams); |
| 258 }; | 259 }; |
| 259 | 260 |
| 260 } // namespace data_reduction_proxy | 261 } // namespace data_reduction_proxy |
| 261 #endif // COMPONENTS_DATA_REDUCTION_PROXY_CORE_BROWSER_DATA_REDUCTION_PROXY_PAR
AMS_H_ | 262 #endif // COMPONENTS_DATA_REDUCTION_PROXY_CORE_BROWSER_DATA_REDUCTION_PROXY_PAR
AMS_H_ |
| OLD | NEW |