Chromium Code Reviews| Index: chrome/browser/io_thread.h |
| diff --git a/chrome/browser/io_thread.h b/chrome/browser/io_thread.h |
| index 2e22994185c73c163ca5f64ed256ede0f499ded6..712217345c2edad4e1c90ede4696d28c4c30156b 100644 |
| --- a/chrome/browser/io_thread.h |
| +++ b/chrome/browser/io_thread.h |
| @@ -17,9 +17,6 @@ |
| #include "base/time/time.h" |
| #include "chrome/browser/net/chrome_network_delegate.h" |
| #include "chrome/browser/net/ssl_config_service_manager.h" |
| -#include "components/data_reduction_proxy/browser/data_reduction_proxy_auth_request_handler.h" |
| -#include "components/data_reduction_proxy/browser/data_reduction_proxy_params.h" |
| -#include "components/data_reduction_proxy/browser/data_reduction_proxy_usage_stats.h" |
| #include "content/public/browser/browser_thread.h" |
| #include "content/public/browser/browser_thread_delegate.h" |
| #include "net/base/network_change_notifier.h" |
| @@ -40,6 +37,13 @@ namespace chrome_browser_net { |
| class DnsProbeService; |
| } |
| +#if defined(SPDY_PROXY_AUTH_ORIGIN) |
| +namespace data_reduction_proxy { |
| +class DataReductionProxyAuthRequestHandler; |
| +class DataReductionProxyParams; |
| +} |
| +#endif // defined(SPDY_PROXY_AUTH_ORIGIN) |
| + |
| namespace extensions { |
| class EventRouterForwarder; |
| } |
| @@ -193,13 +197,13 @@ class IOThread : public content::BrowserThreadDelegate { |
| // main frame load fails with a DNS error in order to provide more useful |
| // information to the renderer so it can show a more specific error page. |
| scoped_ptr<chrome_browser_net::DnsProbeService> dns_probe_service; |
| - scoped_ptr<data_reduction_proxy::DataReductionProxyParams> |
| - data_reduction_proxy_params; |
| - scoped_ptr<data_reduction_proxy::DataReductionProxyUsageStats> |
| - data_reduction_proxy_usage_stats; |
| - scoped_ptr<data_reduction_proxy::DataReductionProxyAuthRequestHandler> |
| - data_reduction_proxy_auth_request_handler; |
| - ChromeNetworkDelegate::OnResolveProxyHandler on_resolve_proxy_handler; |
| +#if defined(SPDY_PROXY_AUTH_ORIGIN) |
| + scoped_ptr<data_reduction_proxy::DataReductionProxyParams> |
| + data_reduction_proxy_params; |
| + |
|
willchan no longer on Chromium
2014/08/04 23:13:46
Any reason for this space? Most other places don't
bengr
2014/08/05 02:35:07
Done.
|
| + scoped_ptr<data_reduction_proxy::DataReductionProxyAuthRequestHandler> |
| + data_reduction_proxy_auth_request_handler; |
| +#endif |
| }; |
| // |net_log| must either outlive the IOThread or be NULL. |