| 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 HttpServerProperties; | 74 class HttpServerProperties; |
| 75 class HttpTransactionFactory; | 75 class HttpTransactionFactory; |
| 76 class HttpUserAgentSettings; | 76 class HttpUserAgentSettings; |
| 77 class LoggingNetworkChangeObserver; |
| 77 class NetworkDelegate; | 78 class NetworkDelegate; |
| 78 class NetworkQualityEstimator; | 79 class NetworkQualityEstimator; |
| 79 class ProxyConfigService; | 80 class ProxyConfigService; |
| 80 class ProxyService; | 81 class ProxyService; |
| 81 class SSLConfigService; | 82 class SSLConfigService; |
| 82 class TransportSecurityState; | 83 class TransportSecurityState; |
| 83 class URLRequestBackoffManager; | 84 class URLRequestBackoffManager; |
| 84 class URLRequestContext; | 85 class URLRequestContext; |
| 85 class URLRequestContextGetter; | 86 class URLRequestContextGetter; |
| 86 class URLRequestJobFactory; | 87 class URLRequestJobFactory; |
| (...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 512 | 513 |
| 513 // These member variables are initialized in Init() and do not change for the | 514 // These member variables are initialized in Init() and do not change for the |
| 514 // lifetime of the IO thread. | 515 // lifetime of the IO thread. |
| 515 | 516 |
| 516 Globals* globals_; | 517 Globals* globals_; |
| 517 | 518 |
| 518 net::HttpNetworkSession::Params params_; | 519 net::HttpNetworkSession::Params params_; |
| 519 NetworkSessionConfigurator network_session_configurator_; | 520 NetworkSessionConfigurator network_session_configurator_; |
| 520 | 521 |
| 521 // Observer that logs network changes to the ChromeNetLog. | 522 // Observer that logs network changes to the ChromeNetLog. |
| 522 class LoggingNetworkChangeObserver; | 523 std::unique_ptr<net::LoggingNetworkChangeObserver> network_change_observer_; |
| 523 std::unique_ptr<LoggingNetworkChangeObserver> network_change_observer_; | |
| 524 | 524 |
| 525 BooleanPrefMember system_enable_referrers_; | 525 BooleanPrefMember system_enable_referrers_; |
| 526 | 526 |
| 527 BooleanPrefMember dns_client_enabled_; | 527 BooleanPrefMember dns_client_enabled_; |
| 528 | 528 |
| 529 BooleanPrefMember quick_check_enabled_; | 529 BooleanPrefMember quick_check_enabled_; |
| 530 | 530 |
| 531 // Store HTTP Auth-related policies in this thread. | 531 // Store HTTP Auth-related policies in this thread. |
| 532 // TODO(aberent) Make the list of auth schemes a PrefMember, so that the | 532 // TODO(aberent) Make the list of auth schemes a PrefMember, so that the |
| 533 // policy can change after startup (https://crbug/549273). | 533 // policy can change after startup (https://crbug/549273). |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 572 // Callback for updating data use prefs which needs to be initialized on UI | 572 // Callback for updating data use prefs which needs to be initialized on UI |
| 573 // thread and passed to |ChromeNetworkDelegate|. | 573 // thread and passed to |ChromeNetworkDelegate|. |
| 574 metrics::UpdateUsagePrefCallbackType metrics_data_use_forwarder_; | 574 metrics::UpdateUsagePrefCallbackType metrics_data_use_forwarder_; |
| 575 | 575 |
| 576 base::WeakPtrFactory<IOThread> weak_factory_; | 576 base::WeakPtrFactory<IOThread> weak_factory_; |
| 577 | 577 |
| 578 DISALLOW_COPY_AND_ASSIGN(IOThread); | 578 DISALLOW_COPY_AND_ASSIGN(IOThread); |
| 579 }; | 579 }; |
| 580 | 580 |
| 581 #endif // CHROME_BROWSER_IO_THREAD_H_ | 581 #endif // CHROME_BROWSER_IO_THREAD_H_ |
| OLD | NEW |