| 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 441 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 452 scoped_ptr<net::ProxyConfigService> system_proxy_config_service_; | 452 scoped_ptr<net::ProxyConfigService> system_proxy_config_service_; |
| 453 | 453 |
| 454 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 454 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
| 455 | 455 |
| 456 scoped_refptr<net::URLRequestContextGetter> | 456 scoped_refptr<net::URLRequestContextGetter> |
| 457 system_url_request_context_getter_; | 457 system_url_request_context_getter_; |
| 458 | 458 |
| 459 // True if SPDY is disabled by policy. | 459 // True if SPDY is disabled by policy. |
| 460 bool is_spdy_disabled_by_policy_; | 460 bool is_spdy_disabled_by_policy_; |
| 461 | 461 |
| 462 const base::TimeTicks creation_time_; |
| 463 |
| 462 base::WeakPtrFactory<IOThread> weak_factory_; | 464 base::WeakPtrFactory<IOThread> weak_factory_; |
| 463 | 465 |
| 464 const base::TimeTicks creation_time_; | |
| 465 | |
| 466 DISALLOW_COPY_AND_ASSIGN(IOThread); | 466 DISALLOW_COPY_AND_ASSIGN(IOThread); |
| 467 }; | 467 }; |
| 468 | 468 |
| 469 #endif // CHROME_BROWSER_IO_THREAD_H_ | 469 #endif // CHROME_BROWSER_IO_THREAD_H_ |
| OLD | NEW |