| 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 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 class PrefService; | 27 class PrefService; |
| 28 class PrefRegistrySimple; | 28 class PrefRegistrySimple; |
| 29 class SystemURLRequestContextGetter; | 29 class SystemURLRequestContextGetter; |
| 30 | 30 |
| 31 namespace base { | 31 namespace base { |
| 32 class CommandLine; | 32 class CommandLine; |
| 33 } | 33 } |
| 34 | 34 |
| 35 namespace chrome_browser_net { | 35 namespace chrome_browser_net { |
| 36 class DnsProbeService; | 36 class DnsProbeService; |
| 37 class HttpPipeliningCompatibilityClient; | |
| 38 } | 37 } |
| 39 | 38 |
| 40 namespace extensions { | 39 namespace extensions { |
| 41 class EventRouterForwarder; | 40 class EventRouterForwarder; |
| 42 } | 41 } |
| 43 | 42 |
| 44 namespace net { | 43 namespace net { |
| 45 class CertVerifier; | 44 class CertVerifier; |
| 46 class CookieStore; | 45 class CookieStore; |
| 47 class CTVerifier; | 46 class CTVerifier; |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 scoped_ptr<net::URLRequestContext> proxy_script_fetcher_context; | 142 scoped_ptr<net::URLRequestContext> proxy_script_fetcher_context; |
| 144 scoped_ptr<net::ProxyService> system_proxy_service; | 143 scoped_ptr<net::ProxyService> system_proxy_service; |
| 145 scoped_ptr<net::HttpTransactionFactory> system_http_transaction_factory; | 144 scoped_ptr<net::HttpTransactionFactory> system_http_transaction_factory; |
| 146 scoped_ptr<net::URLRequestContext> system_request_context; | 145 scoped_ptr<net::URLRequestContext> system_request_context; |
| 147 SystemRequestContextLeakChecker system_request_context_leak_checker; | 146 SystemRequestContextLeakChecker system_request_context_leak_checker; |
| 148 // |system_cookie_store| and |system_server_bound_cert_service| are shared | 147 // |system_cookie_store| and |system_server_bound_cert_service| are shared |
| 149 // between |proxy_script_fetcher_context| and |system_request_context|. | 148 // between |proxy_script_fetcher_context| and |system_request_context|. |
| 150 scoped_refptr<net::CookieStore> system_cookie_store; | 149 scoped_refptr<net::CookieStore> system_cookie_store; |
| 151 scoped_refptr<extensions::EventRouterForwarder> | 150 scoped_refptr<extensions::EventRouterForwarder> |
| 152 extension_event_router_forwarder; | 151 extension_event_router_forwarder; |
| 153 scoped_ptr<chrome_browser_net::HttpPipeliningCompatibilityClient> | |
| 154 http_pipelining_compatibility_client; | |
| 155 scoped_ptr<net::HostMappingRules> host_mapping_rules; | 152 scoped_ptr<net::HostMappingRules> host_mapping_rules; |
| 156 scoped_ptr<net::HttpUserAgentSettings> http_user_agent_settings; | 153 scoped_ptr<net::HttpUserAgentSettings> http_user_agent_settings; |
| 157 bool ignore_certificate_errors; | 154 bool ignore_certificate_errors; |
| 158 bool http_pipelining_enabled; | |
| 159 uint16 testing_fixed_http_port; | 155 uint16 testing_fixed_http_port; |
| 160 uint16 testing_fixed_https_port; | 156 uint16 testing_fixed_https_port; |
| 161 | 157 |
| 162 Optional<size_t> initial_max_spdy_concurrent_streams; | 158 Optional<size_t> initial_max_spdy_concurrent_streams; |
| 163 Optional<bool> force_spdy_single_domain; | 159 Optional<bool> force_spdy_single_domain; |
| 164 Optional<bool> enable_spdy_compression; | 160 Optional<bool> enable_spdy_compression; |
| 165 Optional<bool> enable_spdy_ping_based_connection_checking; | 161 Optional<bool> enable_spdy_ping_based_connection_checking; |
| 166 Optional<net::NextProto> spdy_default_protocol; | 162 Optional<net::NextProto> spdy_default_protocol; |
| 167 net::NextProtoVector next_protos; | 163 net::NextProtoVector next_protos; |
| 168 Optional<string> trusted_spdy_proxy; | 164 Optional<string> trusted_spdy_proxy; |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 373 bool is_spdy_disabled_by_policy_; | 369 bool is_spdy_disabled_by_policy_; |
| 374 | 370 |
| 375 base::WeakPtrFactory<IOThread> weak_factory_; | 371 base::WeakPtrFactory<IOThread> weak_factory_; |
| 376 | 372 |
| 377 const base::TimeTicks creation_time_; | 373 const base::TimeTicks creation_time_; |
| 378 | 374 |
| 379 DISALLOW_COPY_AND_ASSIGN(IOThread); | 375 DISALLOW_COPY_AND_ASSIGN(IOThread); |
| 380 }; | 376 }; |
| 381 | 377 |
| 382 #endif // CHROME_BROWSER_IO_THREAD_H_ | 378 #endif // CHROME_BROWSER_IO_THREAD_H_ |
| OLD | NEW |