OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 IOS_CHROME_BROWSER_IOS_CHROME_IO_THREAD_H_ | 5 #ifndef IOS_CHROME_BROWSER_IOS_CHROME_IO_THREAD_H_ |
6 #define IOS_CHROME_BROWSER_IOS_CHROME_IO_THREAD_H_ | 6 #define IOS_CHROME_BROWSER_IOS_CHROME_IO_THREAD_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 scoped_ptr<net::HttpAuthPreferences> http_auth_preferences; | 120 scoped_ptr<net::HttpAuthPreferences> http_auth_preferences; |
121 scoped_ptr<net::HttpAuthHandlerFactory> http_auth_handler_factory; | 121 scoped_ptr<net::HttpAuthHandlerFactory> http_auth_handler_factory; |
122 scoped_ptr<net::HttpServerProperties> http_server_properties; | 122 scoped_ptr<net::HttpServerProperties> http_server_properties; |
123 scoped_ptr<net::URLRequestBackoffManager> url_request_backoff_manager; | 123 scoped_ptr<net::URLRequestBackoffManager> url_request_backoff_manager; |
124 scoped_ptr<net::ProxyService> system_proxy_service; | 124 scoped_ptr<net::ProxyService> system_proxy_service; |
125 scoped_ptr<net::HttpNetworkSession> system_http_network_session; | 125 scoped_ptr<net::HttpNetworkSession> system_http_network_session; |
126 scoped_ptr<net::HttpTransactionFactory> system_http_transaction_factory; | 126 scoped_ptr<net::HttpTransactionFactory> system_http_transaction_factory; |
127 scoped_ptr<net::URLRequestJobFactory> system_url_request_job_factory; | 127 scoped_ptr<net::URLRequestJobFactory> system_url_request_job_factory; |
128 scoped_ptr<net::URLRequestContext> system_request_context; | 128 scoped_ptr<net::URLRequestContext> system_request_context; |
129 SystemRequestContextLeakChecker system_request_context_leak_checker; | 129 SystemRequestContextLeakChecker system_request_context_leak_checker; |
130 scoped_refptr<net::CookieStore> system_cookie_store; | 130 scoped_ptr<net::CookieStore> system_cookie_store; |
131 scoped_ptr<net::HttpUserAgentSettings> http_user_agent_settings; | 131 scoped_ptr<net::HttpUserAgentSettings> http_user_agent_settings; |
132 scoped_ptr<net::NetworkQualityEstimator> network_quality_estimator; | 132 scoped_ptr<net::NetworkQualityEstimator> network_quality_estimator; |
133 uint16_t testing_fixed_http_port; | 133 uint16_t testing_fixed_http_port; |
134 uint16_t testing_fixed_https_port; | 134 uint16_t testing_fixed_https_port; |
135 Optional<bool> enable_tcp_fast_open_for_ssl; | 135 Optional<bool> enable_tcp_fast_open_for_ssl; |
136 | 136 |
137 Optional<bool> enable_spdy31; | 137 Optional<bool> enable_spdy31; |
138 Optional<bool> enable_http2; | 138 Optional<bool> enable_http2; |
139 Optional<bool> parse_alternative_services; | 139 Optional<bool> parse_alternative_services; |
140 Optional<bool> enable_alternative_service_with_different_host; | 140 Optional<bool> enable_alternative_service_with_different_host; |
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
391 system_url_request_context_getter_; | 391 system_url_request_context_getter_; |
392 | 392 |
393 const base::TimeTicks creation_time_; | 393 const base::TimeTicks creation_time_; |
394 | 394 |
395 base::WeakPtrFactory<IOSChromeIOThread> weak_factory_; | 395 base::WeakPtrFactory<IOSChromeIOThread> weak_factory_; |
396 | 396 |
397 DISALLOW_COPY_AND_ASSIGN(IOSChromeIOThread); | 397 DISALLOW_COPY_AND_ASSIGN(IOSChromeIOThread); |
398 }; | 398 }; |
399 | 399 |
400 #endif // IOS_CHROME_BROWSER_IOS_CHROME_IO_THREAD_H_ | 400 #endif // IOS_CHROME_BROWSER_IOS_CHROME_IO_THREAD_H_ |
OLD | NEW |