| 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 <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 | 67 |
| 68 namespace extensions { | 68 namespace extensions { |
| 69 class ExtensionThrottleManager; | 69 class ExtensionThrottleManager; |
| 70 class InfoMap; | 70 class InfoMap; |
| 71 } | 71 } |
| 72 | 72 |
| 73 namespace net { | 73 namespace net { |
| 74 class CertVerifier; | 74 class CertVerifier; |
| 75 class ChannelIDService; | 75 class ChannelIDService; |
| 76 class CookieStore; | 76 class CookieStore; |
| 77 class CTVerifier; |
| 77 class FtpTransactionFactory; | 78 class FtpTransactionFactory; |
| 78 class HttpServerProperties; | 79 class HttpServerProperties; |
| 79 class HttpTransactionFactory; | 80 class HttpTransactionFactory; |
| 80 class ProxyConfigService; | 81 class ProxyConfigService; |
| 81 class ProxyService; | 82 class ProxyService; |
| 82 class ReportSender; | 83 class ReportSender; |
| 83 class SSLConfigService; | 84 class SSLConfigService; |
| 84 class TransportSecurityPersister; | 85 class TransportSecurityPersister; |
| 85 class TransportSecurityState; | 86 class TransportSecurityState; |
| 86 class URLRequestJobFactoryImpl; | 87 class URLRequestJobFactoryImpl; |
| (...skipping 532 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 619 mutable std::unique_ptr<certificate_transparency::TreeStateTracker> | 620 mutable std::unique_ptr<certificate_transparency::TreeStateTracker> |
| 620 ct_tree_tracker_; | 621 ct_tree_tracker_; |
| 621 mutable base::Closure ct_tree_tracker_unregistration_; | 622 mutable base::Closure ct_tree_tracker_unregistration_; |
| 622 | 623 |
| 623 const Profile::ProfileType profile_type_; | 624 const Profile::ProfileType profile_type_; |
| 624 | 625 |
| 625 DISALLOW_COPY_AND_ASSIGN(ProfileIOData); | 626 DISALLOW_COPY_AND_ASSIGN(ProfileIOData); |
| 626 }; | 627 }; |
| 627 | 628 |
| 628 #endif // CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ | 629 #endif // CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ |
| OLD | NEW |