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