| 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 445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 456 | 456 |
| 457 BooleanPrefMember quick_check_enabled_; | 457 BooleanPrefMember quick_check_enabled_; |
| 458 | 458 |
| 459 // Store HTTP Auth-related policies in this thread. | 459 // Store HTTP Auth-related policies in this thread. |
| 460 std::string auth_schemes_; | 460 std::string auth_schemes_; |
| 461 bool negotiate_disable_cname_lookup_; | 461 bool negotiate_disable_cname_lookup_; |
| 462 bool negotiate_enable_port_; | 462 bool negotiate_enable_port_; |
| 463 std::string auth_server_whitelist_; | 463 std::string auth_server_whitelist_; |
| 464 std::string auth_delegate_whitelist_; | 464 std::string auth_delegate_whitelist_; |
| 465 std::string gssapi_library_name_; | 465 std::string gssapi_library_name_; |
| 466 std::string auth_android_negotiate_account_type_; |
| 466 | 467 |
| 467 // This is an instance of the default SSLConfigServiceManager for the current | 468 // This is an instance of the default SSLConfigServiceManager for the current |
| 468 // platform and it gets SSL preferences from local_state object. | 469 // platform and it gets SSL preferences from local_state object. |
| 469 scoped_ptr<SSLConfigServiceManager> ssl_config_service_manager_; | 470 scoped_ptr<SSLConfigServiceManager> ssl_config_service_manager_; |
| 470 | 471 |
| 471 // These member variables are initialized by a task posted to the IO thread, | 472 // These member variables are initialized by a task posted to the IO thread, |
| 472 // which gets posted by calling certain member functions of IOThread. | 473 // which gets posted by calling certain member functions of IOThread. |
| 473 scoped_ptr<net::ProxyConfigService> system_proxy_config_service_; | 474 scoped_ptr<net::ProxyConfigService> system_proxy_config_service_; |
| 474 | 475 |
| 475 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 476 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
| 476 | 477 |
| 477 scoped_refptr<net::URLRequestContextGetter> | 478 scoped_refptr<net::URLRequestContextGetter> |
| 478 system_url_request_context_getter_; | 479 system_url_request_context_getter_; |
| 479 | 480 |
| 480 // True if SPDY is disabled by policy. | 481 // True if SPDY is disabled by policy. |
| 481 bool is_spdy_disabled_by_policy_; | 482 bool is_spdy_disabled_by_policy_; |
| 482 | 483 |
| 483 // True if QUIC is allowed by policy. | 484 // True if QUIC is allowed by policy. |
| 484 bool is_quic_allowed_by_policy_; | 485 bool is_quic_allowed_by_policy_; |
| 485 | 486 |
| 486 const base::TimeTicks creation_time_; | 487 const base::TimeTicks creation_time_; |
| 487 | 488 |
| 488 base::WeakPtrFactory<IOThread> weak_factory_; | 489 base::WeakPtrFactory<IOThread> weak_factory_; |
| 489 | 490 |
| 490 DISALLOW_COPY_AND_ASSIGN(IOThread); | 491 DISALLOW_COPY_AND_ASSIGN(IOThread); |
| 491 }; | 492 }; |
| 492 | 493 |
| 493 #endif // CHROME_BROWSER_IO_THREAD_H_ | 494 #endif // CHROME_BROWSER_IO_THREAD_H_ |
| OLD | NEW |