| 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 <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 | 54 |
| 55 namespace data_usage { | 55 namespace data_usage { |
| 56 class DataUseAggregator; | 56 class DataUseAggregator; |
| 57 } | 57 } |
| 58 | 58 |
| 59 namespace extensions { | 59 namespace extensions { |
| 60 class EventRouterForwarder; | 60 class EventRouterForwarder; |
| 61 } | 61 } |
| 62 | 62 |
| 63 namespace net { | 63 namespace net { |
| 64 class CertPolicyEnforcer; | 64 class CTPolicyEnforcer; |
| 65 class CertVerifier; | 65 class CertVerifier; |
| 66 class ChannelIDService; | 66 class ChannelIDService; |
| 67 class CookieStore; | 67 class CookieStore; |
| 68 class CTLogVerifier; | 68 class CTLogVerifier; |
| 69 class FtpTransactionFactory; | 69 class FtpTransactionFactory; |
| 70 class HostMappingRules; | 70 class HostMappingRules; |
| 71 class HostResolver; | 71 class HostResolver; |
| 72 class HttpAuthHandlerRegistryFactory; | 72 class HttpAuthHandlerRegistryFactory; |
| 73 class HttpAuthPreferences; | 73 class HttpAuthPreferences; |
| 74 class HttpNetworkSession; | 74 class HttpNetworkSession; |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 scoped_ptr<net::HostResolver> host_resolver; | 153 scoped_ptr<net::HostResolver> host_resolver; |
| 154 scoped_ptr<net::CertVerifier> cert_verifier; | 154 scoped_ptr<net::CertVerifier> cert_verifier; |
| 155 // The ChannelIDService must outlive the HttpTransactionFactory. | 155 // The ChannelIDService must outlive the HttpTransactionFactory. |
| 156 scoped_ptr<net::ChannelIDService> system_channel_id_service; | 156 scoped_ptr<net::ChannelIDService> system_channel_id_service; |
| 157 // This TransportSecurityState doesn't load or save any state. It's only | 157 // This TransportSecurityState doesn't load or save any state. It's only |
| 158 // used to enforce pinning for system requests and will only use built-in | 158 // used to enforce pinning for system requests and will only use built-in |
| 159 // pins. | 159 // pins. |
| 160 scoped_ptr<net::TransportSecurityState> transport_security_state; | 160 scoped_ptr<net::TransportSecurityState> transport_security_state; |
| 161 std::vector<scoped_refptr<const net::CTLogVerifier>> ct_logs; | 161 std::vector<scoped_refptr<const net::CTLogVerifier>> ct_logs; |
| 162 scoped_ptr<net::CTVerifier> cert_transparency_verifier; | 162 scoped_ptr<net::CTVerifier> cert_transparency_verifier; |
| 163 scoped_ptr<net::CertPolicyEnforcer> cert_policy_enforcer; | 163 scoped_ptr<net::CTPolicyEnforcer> ct_policy_enforcer; |
| 164 scoped_refptr<net::SSLConfigService> ssl_config_service; | 164 scoped_refptr<net::SSLConfigService> ssl_config_service; |
| 165 scoped_ptr<net::HttpAuthHandlerFactory> http_auth_handler_factory; | 165 scoped_ptr<net::HttpAuthHandlerFactory> http_auth_handler_factory; |
| 166 scoped_ptr<net::HttpServerProperties> http_server_properties; | 166 scoped_ptr<net::HttpServerProperties> http_server_properties; |
| 167 scoped_ptr<net::ProxyService> proxy_script_fetcher_proxy_service; | 167 scoped_ptr<net::ProxyService> proxy_script_fetcher_proxy_service; |
| 168 scoped_ptr<net::HttpNetworkSession> | 168 scoped_ptr<net::HttpNetworkSession> |
| 169 proxy_script_fetcher_http_network_session; | 169 proxy_script_fetcher_http_network_session; |
| 170 scoped_ptr<net::HttpTransactionFactory> | 170 scoped_ptr<net::HttpTransactionFactory> |
| 171 proxy_script_fetcher_http_transaction_factory; | 171 proxy_script_fetcher_http_transaction_factory; |
| 172 scoped_ptr<net::FtpTransactionFactory> | 172 scoped_ptr<net::FtpTransactionFactory> |
| 173 proxy_script_fetcher_ftp_transaction_factory; | 173 proxy_script_fetcher_ftp_transaction_factory; |
| (...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 570 bool is_quic_allowed_by_policy_; | 570 bool is_quic_allowed_by_policy_; |
| 571 | 571 |
| 572 const base::TimeTicks creation_time_; | 572 const base::TimeTicks creation_time_; |
| 573 | 573 |
| 574 base::WeakPtrFactory<IOThread> weak_factory_; | 574 base::WeakPtrFactory<IOThread> weak_factory_; |
| 575 | 575 |
| 576 DISALLOW_COPY_AND_ASSIGN(IOThread); | 576 DISALLOW_COPY_AND_ASSIGN(IOThread); |
| 577 }; | 577 }; |
| 578 | 578 |
| 579 #endif // CHROME_BROWSER_IO_THREAD_H_ | 579 #endif // CHROME_BROWSER_IO_THREAD_H_ |
| OLD | NEW |