| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 class DataReductionProxyAuthRequestHandler; | 42 class DataReductionProxyAuthRequestHandler; |
| 43 class DataReductionProxyDelegate; | 43 class DataReductionProxyDelegate; |
| 44 class DataReductionProxyParams; | 44 class DataReductionProxyParams; |
| 45 } | 45 } |
| 46 | 46 |
| 47 namespace extensions { | 47 namespace extensions { |
| 48 class EventRouterForwarder; | 48 class EventRouterForwarder; |
| 49 } | 49 } |
| 50 | 50 |
| 51 namespace net { | 51 namespace net { |
| 52 class CertPolicyEnforcer; |
| 52 class CertVerifier; | 53 class CertVerifier; |
| 53 class ChannelIDService; | 54 class ChannelIDService; |
| 54 class CookieStore; | 55 class CookieStore; |
| 55 class CTVerifier; | 56 class CTVerifier; |
| 56 class FtpTransactionFactory; | 57 class FtpTransactionFactory; |
| 57 class HostMappingRules; | 58 class HostMappingRules; |
| 58 class HostResolver; | 59 class HostResolver; |
| 59 class HttpAuthHandlerFactory; | 60 class HttpAuthHandlerFactory; |
| 60 class HttpServerProperties; | 61 class HttpServerProperties; |
| 61 class HttpTransactionFactory; | 62 class HttpTransactionFactory; |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 scoped_ptr<net::NetworkDelegate> system_network_delegate; | 126 scoped_ptr<net::NetworkDelegate> system_network_delegate; |
| 126 scoped_ptr<net::HostResolver> host_resolver; | 127 scoped_ptr<net::HostResolver> host_resolver; |
| 127 scoped_ptr<net::CertVerifier> cert_verifier; | 128 scoped_ptr<net::CertVerifier> cert_verifier; |
| 128 // The ChannelIDService must outlive the HttpTransactionFactory. | 129 // The ChannelIDService must outlive the HttpTransactionFactory. |
| 129 scoped_ptr<net::ChannelIDService> system_channel_id_service; | 130 scoped_ptr<net::ChannelIDService> system_channel_id_service; |
| 130 // This TransportSecurityState doesn't load or save any state. It's only | 131 // This TransportSecurityState doesn't load or save any state. It's only |
| 131 // used to enforce pinning for system requests and will only use built-in | 132 // used to enforce pinning for system requests and will only use built-in |
| 132 // pins. | 133 // pins. |
| 133 scoped_ptr<net::TransportSecurityState> transport_security_state; | 134 scoped_ptr<net::TransportSecurityState> transport_security_state; |
| 134 scoped_ptr<net::CTVerifier> cert_transparency_verifier; | 135 scoped_ptr<net::CTVerifier> cert_transparency_verifier; |
| 136 scoped_ptr<net::CertPolicyEnforcer> cert_policy_enforcer; |
| 135 scoped_refptr<net::SSLConfigService> ssl_config_service; | 137 scoped_refptr<net::SSLConfigService> ssl_config_service; |
| 136 scoped_ptr<net::HttpAuthHandlerFactory> http_auth_handler_factory; | 138 scoped_ptr<net::HttpAuthHandlerFactory> http_auth_handler_factory; |
| 137 scoped_ptr<net::HttpServerProperties> http_server_properties; | 139 scoped_ptr<net::HttpServerProperties> http_server_properties; |
| 138 scoped_ptr<net::ProxyService> proxy_script_fetcher_proxy_service; | 140 scoped_ptr<net::ProxyService> proxy_script_fetcher_proxy_service; |
| 139 scoped_ptr<net::HttpTransactionFactory> | 141 scoped_ptr<net::HttpTransactionFactory> |
| 140 proxy_script_fetcher_http_transaction_factory; | 142 proxy_script_fetcher_http_transaction_factory; |
| 141 scoped_ptr<net::FtpTransactionFactory> | 143 scoped_ptr<net::FtpTransactionFactory> |
| 142 proxy_script_fetcher_ftp_transaction_factory; | 144 proxy_script_fetcher_ftp_transaction_factory; |
| 143 scoped_ptr<net::URLRequestJobFactory> | 145 scoped_ptr<net::URLRequestJobFactory> |
| 144 proxy_script_fetcher_url_request_job_factory; | 146 proxy_script_fetcher_url_request_job_factory; |
| (...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 454 bool is_spdy_disabled_by_policy_; | 456 bool is_spdy_disabled_by_policy_; |
| 455 | 457 |
| 456 const base::TimeTicks creation_time_; | 458 const base::TimeTicks creation_time_; |
| 457 | 459 |
| 458 base::WeakPtrFactory<IOThread> weak_factory_; | 460 base::WeakPtrFactory<IOThread> weak_factory_; |
| 459 | 461 |
| 460 DISALLOW_COPY_AND_ASSIGN(IOThread); | 462 DISALLOW_COPY_AND_ASSIGN(IOThread); |
| 461 }; | 463 }; |
| 462 | 464 |
| 463 #endif // CHROME_BROWSER_IO_THREAD_H_ | 465 #endif // CHROME_BROWSER_IO_THREAD_H_ |
| OLD | NEW |