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_PROFILES_PROFILE_IO_DATA_H_ | 5 #ifndef CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ |
6 #define CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ | 6 #define CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 29 matching lines...) Expand all Loading... |
40 class MediaDeviceIDSalt; | 40 class MediaDeviceIDSalt; |
41 class ProtocolHandlerRegistry; | 41 class ProtocolHandlerRegistry; |
42 class SigninNamesOnIOThread; | 42 class SigninNamesOnIOThread; |
43 class SupervisedUserURLFilter; | 43 class SupervisedUserURLFilter; |
44 | 44 |
45 namespace extensions { | 45 namespace extensions { |
46 class InfoMap; | 46 class InfoMap; |
47 } | 47 } |
48 | 48 |
49 namespace net { | 49 namespace net { |
| 50 class CertVerifier; |
50 class ChannelIDService; | 51 class ChannelIDService; |
51 class CookieStore; | 52 class CookieStore; |
52 class FraudulentCertificateReporter; | 53 class FraudulentCertificateReporter; |
53 class FtpTransactionFactory; | 54 class FtpTransactionFactory; |
54 class HttpServerProperties; | 55 class HttpServerProperties; |
55 class HttpTransactionFactory; | 56 class HttpTransactionFactory; |
56 class ProxyConfigService; | 57 class ProxyConfigService; |
57 class ProxyService; | 58 class ProxyService; |
58 class SSLConfigService; | 59 class SSLConfigService; |
59 class TransportSecurityPersister; | 60 class TransportSecurityPersister; |
(...skipping 520 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
580 #endif | 581 #endif |
581 mutable scoped_ptr<net::ChannelIDService> channel_id_service_; | 582 mutable scoped_ptr<net::ChannelIDService> channel_id_service_; |
582 mutable scoped_ptr<ChromeNetworkDelegate> network_delegate_; | 583 mutable scoped_ptr<ChromeNetworkDelegate> network_delegate_; |
583 mutable scoped_ptr<net::FraudulentCertificateReporter> | 584 mutable scoped_ptr<net::FraudulentCertificateReporter> |
584 fraudulent_certificate_reporter_; | 585 fraudulent_certificate_reporter_; |
585 mutable scoped_ptr<net::ProxyService> proxy_service_; | 586 mutable scoped_ptr<net::ProxyService> proxy_service_; |
586 mutable scoped_ptr<net::TransportSecurityState> transport_security_state_; | 587 mutable scoped_ptr<net::TransportSecurityState> transport_security_state_; |
587 mutable scoped_ptr<net::HttpServerProperties> | 588 mutable scoped_ptr<net::HttpServerProperties> |
588 http_server_properties_; | 589 http_server_properties_; |
589 #if defined(OS_CHROMEOS) | 590 #if defined(OS_CHROMEOS) |
590 mutable scoped_ptr<policy::PolicyCertVerifier> cert_verifier_; | 591 // Set to |cert_verifier_| if it references a PolicyCertVerifier. In that |
| 592 // case, the verifier is owned by |cert_verifier_|. Otherwise, set to NULL. |
| 593 mutable policy::PolicyCertVerifier* policy_cert_verifier_; |
| 594 mutable scoped_ptr<net::CertVerifier> cert_verifier_; |
591 mutable std::string username_hash_; | 595 mutable std::string username_hash_; |
592 mutable bool use_system_key_slot_; | 596 mutable bool use_system_key_slot_; |
593 #endif | 597 #endif |
594 | 598 |
595 mutable scoped_ptr<net::TransportSecurityPersister> | 599 mutable scoped_ptr<net::TransportSecurityPersister> |
596 transport_security_persister_; | 600 transport_security_persister_; |
597 | 601 |
598 // These are only valid in between LazyInitialize() and their accessor being | 602 // These are only valid in between LazyInitialize() and their accessor being |
599 // called. | 603 // called. |
600 mutable scoped_ptr<net::URLRequestContext> main_request_context_; | 604 mutable scoped_ptr<net::URLRequestContext> main_request_context_; |
(...skipping 20 matching lines...) Expand all Loading... |
621 | 625 |
622 // TODO(jhawkins): Remove once crbug.com/102004 is fixed. | 626 // TODO(jhawkins): Remove once crbug.com/102004 is fixed. |
623 bool initialized_on_UI_thread_; | 627 bool initialized_on_UI_thread_; |
624 | 628 |
625 const Profile::ProfileType profile_type_; | 629 const Profile::ProfileType profile_type_; |
626 | 630 |
627 DISALLOW_COPY_AND_ASSIGN(ProfileIOData); | 631 DISALLOW_COPY_AND_ASSIGN(ProfileIOData); |
628 }; | 632 }; |
629 | 633 |
630 #endif // CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ | 634 #endif // CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ |
OLD | NEW |