| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_IO_THREAD_H_ | 5 #ifndef CHROME_BROWSER_IO_THREAD_H_ |
| 6 #define CHROME_BROWSER_IO_THREAD_H_ | 6 #define CHROME_BROWSER_IO_THREAD_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 | 34 |
| 35 namespace net { | 35 namespace net { |
| 36 class CertVerifier; | 36 class CertVerifier; |
| 37 class CookieStore; | 37 class CookieStore; |
| 38 class FtpTransactionFactory; | 38 class FtpTransactionFactory; |
| 39 class HostMappingRules; | 39 class HostMappingRules; |
| 40 class HostResolver; | 40 class HostResolver; |
| 41 class HttpAuthHandlerFactory; | 41 class HttpAuthHandlerFactory; |
| 42 class HttpServerProperties; | 42 class HttpServerProperties; |
| 43 class HttpTransactionFactory; | 43 class HttpTransactionFactory; |
| 44 class HttpUserAgentSettings; |
| 44 class NetworkDelegate; | 45 class NetworkDelegate; |
| 45 class ServerBoundCertService; | 46 class ServerBoundCertService; |
| 46 class ProxyConfigService; | 47 class ProxyConfigService; |
| 47 class ProxyService; | 48 class ProxyService; |
| 48 class SdchManager; | 49 class SdchManager; |
| 49 class SSLConfigService; | 50 class SSLConfigService; |
| 50 class TransportSecurityState; | 51 class TransportSecurityState; |
| 51 class URLRequestContext; | 52 class URLRequestContext; |
| 52 class URLRequestContextGetter; | 53 class URLRequestContextGetter; |
| 53 class URLRequestThrottlerManager; | 54 class URLRequestThrottlerManager; |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 // |system_cookie_store| and |system_server_bound_cert_service| are shared | 109 // |system_cookie_store| and |system_server_bound_cert_service| are shared |
| 109 // between |proxy_script_fetcher_context| and |system_request_context|. | 110 // between |proxy_script_fetcher_context| and |system_request_context|. |
| 110 scoped_refptr<net::CookieStore> system_cookie_store; | 111 scoped_refptr<net::CookieStore> system_cookie_store; |
| 111 scoped_ptr<net::ServerBoundCertService> system_server_bound_cert_service; | 112 scoped_ptr<net::ServerBoundCertService> system_server_bound_cert_service; |
| 112 scoped_refptr<extensions::EventRouterForwarder> | 113 scoped_refptr<extensions::EventRouterForwarder> |
| 113 extension_event_router_forwarder; | 114 extension_event_router_forwarder; |
| 114 scoped_ptr<chrome_browser_net::HttpPipeliningCompatibilityClient> | 115 scoped_ptr<chrome_browser_net::HttpPipeliningCompatibilityClient> |
| 115 http_pipelining_compatibility_client; | 116 http_pipelining_compatibility_client; |
| 116 scoped_ptr<chrome_browser_net::LoadTimeStats> load_time_stats; | 117 scoped_ptr<chrome_browser_net::LoadTimeStats> load_time_stats; |
| 117 scoped_ptr<net::HostMappingRules> host_mapping_rules; | 118 scoped_ptr<net::HostMappingRules> host_mapping_rules; |
| 119 scoped_ptr<net::HttpUserAgentSettings> http_user_agent_settings; |
| 118 bool ignore_certificate_errors; | 120 bool ignore_certificate_errors; |
| 119 bool http_pipelining_enabled; | 121 bool http_pipelining_enabled; |
| 120 uint16 testing_fixed_http_port; | 122 uint16 testing_fixed_http_port; |
| 121 uint16 testing_fixed_https_port; | 123 uint16 testing_fixed_https_port; |
| 122 }; | 124 }; |
| 123 | 125 |
| 124 // |net_log| must either outlive the IOThread or be NULL. | 126 // |net_log| must either outlive the IOThread or be NULL. |
| 125 IOThread(PrefService* local_state, | 127 IOThread(PrefService* local_state, |
| 126 ChromeNetLog* net_log, | 128 ChromeNetLog* net_log, |
| 127 extensions::EventRouterForwarder* extension_event_router_forwarder); | 129 extensions::EventRouterForwarder* extension_event_router_forwarder); |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 system_url_request_context_getter_; | 224 system_url_request_context_getter_; |
| 223 | 225 |
| 224 net::SdchManager* sdch_manager_; | 226 net::SdchManager* sdch_manager_; |
| 225 | 227 |
| 226 base::WeakPtrFactory<IOThread> weak_factory_; | 228 base::WeakPtrFactory<IOThread> weak_factory_; |
| 227 | 229 |
| 228 DISALLOW_COPY_AND_ASSIGN(IOThread); | 230 DISALLOW_COPY_AND_ASSIGN(IOThread); |
| 229 }; | 231 }; |
| 230 | 232 |
| 231 #endif // CHROME_BROWSER_IO_THREAD_H_ | 233 #endif // CHROME_BROWSER_IO_THREAD_H_ |
| OLD | NEW |