| 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 class HostResolver; | 80 class HostResolver; |
| 81 class HttpAuthHandlerFactory; | 81 class HttpAuthHandlerFactory; |
| 82 class HttpAuthPreferences; | 82 class HttpAuthPreferences; |
| 83 class LoggingNetworkChangeObserver; | 83 class LoggingNetworkChangeObserver; |
| 84 class NetworkQualityEstimator; | 84 class NetworkQualityEstimator; |
| 85 class ProxyConfigService; | 85 class ProxyConfigService; |
| 86 class RTTAndThroughputEstimatesObserver; | 86 class RTTAndThroughputEstimatesObserver; |
| 87 class SSLConfigService; | 87 class SSLConfigService; |
| 88 class URLRequestContext; | 88 class URLRequestContext; |
| 89 class URLRequestContextGetter; | 89 class URLRequestContextGetter; |
| 90 class URLRequestContextStorage; | |
| 91 | 90 |
| 92 namespace ct { | 91 namespace ct { |
| 93 class STHObserver; | 92 class STHObserver; |
| 94 } | 93 } |
| 95 | 94 |
| 96 } // namespace net | 95 } // namespace net |
| 97 | 96 |
| 98 namespace net_log { | 97 namespace net_log { |
| 99 class ChromeNetLog; | 98 class ChromeNetLog; |
| 100 } | 99 } |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 // Global aggregator of data use. It must outlive the | 133 // Global aggregator of data use. It must outlive the |
| 135 // |system_network_delegate|. | 134 // |system_network_delegate|. |
| 136 std::unique_ptr<data_usage::DataUseAggregator> data_use_aggregator; | 135 std::unique_ptr<data_usage::DataUseAggregator> data_use_aggregator; |
| 137 #if defined(OS_ANDROID) | 136 #if defined(OS_ANDROID) |
| 138 // An external observer of data use. | 137 // An external observer of data use. |
| 139 std::unique_ptr<chrome::android::ExternalDataUseObserver> | 138 std::unique_ptr<chrome::android::ExternalDataUseObserver> |
| 140 external_data_use_observer; | 139 external_data_use_observer; |
| 141 #endif // defined(OS_ANDROID) | 140 #endif // defined(OS_ANDROID) |
| 142 std::vector<scoped_refptr<const net::CTLogVerifier>> ct_logs; | 141 std::vector<scoped_refptr<const net::CTLogVerifier>> ct_logs; |
| 143 std::unique_ptr<net::HttpAuthPreferences> http_auth_preferences; | 142 std::unique_ptr<net::HttpAuthPreferences> http_auth_preferences; |
| 144 std::unique_ptr<net::URLRequestContextStorage> | |
| 145 system_request_context_storage; | |
| 146 std::unique_ptr<net::URLRequestContext> system_request_context; | 143 std::unique_ptr<net::URLRequestContext> system_request_context; |
| 147 SystemRequestContextLeakChecker system_request_context_leak_checker; | 144 SystemRequestContextLeakChecker system_request_context_leak_checker; |
| 148 #if BUILDFLAG(ENABLE_EXTENSIONS) | 145 #if BUILDFLAG(ENABLE_EXTENSIONS) |
| 149 scoped_refptr<extensions::EventRouterForwarder> | 146 scoped_refptr<extensions::EventRouterForwarder> |
| 150 extension_event_router_forwarder; | 147 extension_event_router_forwarder; |
| 151 #endif | 148 #endif |
| 152 std::unique_ptr<net::HostMappingRules> host_mapping_rules; | 149 std::unique_ptr<net::HostMappingRules> host_mapping_rules; |
| 153 std::unique_ptr<net::NetworkQualityEstimator> network_quality_estimator; | 150 std::unique_ptr<net::NetworkQualityEstimator> network_quality_estimator; |
| 154 std::unique_ptr<net::RTTAndThroughputEstimatesObserver> | 151 std::unique_ptr<net::RTTAndThroughputEstimatesObserver> |
| 155 network_quality_observer; | 152 network_quality_observer; |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 347 bool http_09_on_non_default_ports_enabled_; | 344 bool http_09_on_non_default_ports_enabled_; |
| 348 | 345 |
| 349 const base::TimeTicks creation_time_; | 346 const base::TimeTicks creation_time_; |
| 350 | 347 |
| 351 base::WeakPtrFactory<IOThread> weak_factory_; | 348 base::WeakPtrFactory<IOThread> weak_factory_; |
| 352 | 349 |
| 353 DISALLOW_COPY_AND_ASSIGN(IOThread); | 350 DISALLOW_COPY_AND_ASSIGN(IOThread); |
| 354 }; | 351 }; |
| 355 | 352 |
| 356 #endif // CHROME_BROWSER_IO_THREAD_H_ | 353 #endif // CHROME_BROWSER_IO_THREAD_H_ |
| OLD | NEW |