Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(378)

Side by Side Diff: chrome/browser/io_thread.h

Issue 1128043007: Support Kerberos on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix cbentzel@'s nits Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after
450 450
451 BooleanPrefMember quick_check_enabled_; 451 BooleanPrefMember quick_check_enabled_;
452 452
453 // Store HTTP Auth-related policies in this thread. 453 // Store HTTP Auth-related policies in this thread.
454 std::string auth_schemes_; 454 std::string auth_schemes_;
455 bool negotiate_disable_cname_lookup_; 455 bool negotiate_disable_cname_lookup_;
456 bool negotiate_enable_port_; 456 bool negotiate_enable_port_;
457 std::string auth_server_whitelist_; 457 std::string auth_server_whitelist_;
458 std::string auth_delegate_whitelist_; 458 std::string auth_delegate_whitelist_;
459 std::string gssapi_library_name_; 459 std::string gssapi_library_name_;
460 std::string auth_android_negotiate_account_type_;
460 461
461 // This is an instance of the default SSLConfigServiceManager for the current 462 // This is an instance of the default SSLConfigServiceManager for the current
462 // platform and it gets SSL preferences from local_state object. 463 // platform and it gets SSL preferences from local_state object.
463 scoped_ptr<SSLConfigServiceManager> ssl_config_service_manager_; 464 scoped_ptr<SSLConfigServiceManager> ssl_config_service_manager_;
464 465
465 // These member variables are initialized by a task posted to the IO thread, 466 // These member variables are initialized by a task posted to the IO thread,
466 // which gets posted by calling certain member functions of IOThread. 467 // which gets posted by calling certain member functions of IOThread.
467 scoped_ptr<net::ProxyConfigService> system_proxy_config_service_; 468 scoped_ptr<net::ProxyConfigService> system_proxy_config_service_;
468 469
469 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; 470 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_;
470 471
471 scoped_refptr<net::URLRequestContextGetter> 472 scoped_refptr<net::URLRequestContextGetter>
472 system_url_request_context_getter_; 473 system_url_request_context_getter_;
473 474
474 // True if SPDY is disabled by policy. 475 // True if SPDY is disabled by policy.
475 bool is_spdy_disabled_by_policy_; 476 bool is_spdy_disabled_by_policy_;
476 477
477 // True if QUIC is allowed by policy. 478 // True if QUIC is allowed by policy.
478 bool is_quic_allowed_by_policy_; 479 bool is_quic_allowed_by_policy_;
479 480
480 const base::TimeTicks creation_time_; 481 const base::TimeTicks creation_time_;
481 482
482 base::WeakPtrFactory<IOThread> weak_factory_; 483 base::WeakPtrFactory<IOThread> weak_factory_;
483 484
484 DISALLOW_COPY_AND_ASSIGN(IOThread); 485 DISALLOW_COPY_AND_ASSIGN(IOThread);
485 }; 486 };
486 487
487 #endif // CHROME_BROWSER_IO_THREAD_H_ 488 #endif // CHROME_BROWSER_IO_THREAD_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698