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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 class HostMappingRules; | 49 class HostMappingRules; |
50 class HostResolver; | 50 class HostResolver; |
51 class HttpAuthHandlerFactory; | 51 class HttpAuthHandlerFactory; |
52 class HttpServerProperties; | 52 class HttpServerProperties; |
53 class HttpTransactionFactory; | 53 class HttpTransactionFactory; |
54 class HttpUserAgentSettings; | 54 class HttpUserAgentSettings; |
55 class NetworkDelegate; | 55 class NetworkDelegate; |
56 class ServerBoundCertService; | 56 class ServerBoundCertService; |
57 class ProxyConfigService; | 57 class ProxyConfigService; |
58 class ProxyService; | 58 class ProxyService; |
59 class SdchManager; | |
60 class SSLConfigService; | 59 class SSLConfigService; |
61 class TransportSecurityState; | 60 class TransportSecurityState; |
62 class URLRequestContext; | 61 class URLRequestContext; |
63 class URLRequestContextGetter; | 62 class URLRequestContextGetter; |
64 class URLRequestJobFactory; | 63 class URLRequestJobFactory; |
65 class URLRequestThrottlerManager; | 64 class URLRequestThrottlerManager; |
66 class URLSecurityManager; | 65 class URLSecurityManager; |
67 } // namespace net | 66 } // namespace net |
68 | 67 |
69 namespace policy { | 68 namespace policy { |
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
361 | 360 |
362 // These member variables are initialized by a task posted to the IO thread, | 361 // These member variables are initialized by a task posted to the IO thread, |
363 // which gets posted by calling certain member functions of IOThread. | 362 // which gets posted by calling certain member functions of IOThread. |
364 scoped_ptr<net::ProxyConfigService> system_proxy_config_service_; | 363 scoped_ptr<net::ProxyConfigService> system_proxy_config_service_; |
365 | 364 |
366 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 365 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
367 | 366 |
368 scoped_refptr<net::URLRequestContextGetter> | 367 scoped_refptr<net::URLRequestContextGetter> |
369 system_url_request_context_getter_; | 368 system_url_request_context_getter_; |
370 | 369 |
371 net::SdchManager* sdch_manager_; | |
372 | |
373 // True if SPDY is disabled by policy. | 370 // True if SPDY is disabled by policy. |
374 bool is_spdy_disabled_by_policy_; | 371 bool is_spdy_disabled_by_policy_; |
375 | 372 |
376 base::WeakPtrFactory<IOThread> weak_factory_; | 373 base::WeakPtrFactory<IOThread> weak_factory_; |
377 | 374 |
378 const base::TimeTicks creation_time_; | 375 const base::TimeTicks creation_time_; |
379 | 376 |
380 DISALLOW_COPY_AND_ASSIGN(IOThread); | 377 DISALLOW_COPY_AND_ASSIGN(IOThread); |
381 }; | 378 }; |
382 | 379 |
383 #endif // CHROME_BROWSER_IO_THREAD_H_ | 380 #endif // CHROME_BROWSER_IO_THREAD_H_ |
OLD | NEW |