| 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 class ExtensionThrottleManager; | 72 class ExtensionThrottleManager; |
| 73 class InfoMap; | 73 class InfoMap; |
| 74 } | 74 } |
| 75 | 75 |
| 76 namespace net { | 76 namespace net { |
| 77 class CertVerifier; | 77 class CertVerifier; |
| 78 class ChannelIDService; | 78 class ChannelIDService; |
| 79 class ClientCertStore; | 79 class ClientCertStore; |
| 80 class CookieStore; | 80 class CookieStore; |
| 81 class CTVerifier; | 81 class CTVerifier; |
| 82 class HttpServerProperties; | |
| 83 class HttpTransactionFactory; | 82 class HttpTransactionFactory; |
| 84 class ProxyConfigService; | 83 class ProxyConfigService; |
| 85 class ProxyService; | 84 class ProxyService; |
| 86 class ReportSender; | 85 class ReportSender; |
| 87 class SSLConfigService; | 86 class SSLConfigService; |
| 88 class TransportSecurityPersister; | 87 class TransportSecurityPersister; |
| 89 class TransportSecurityState; | 88 class TransportSecurityState; |
| 90 class URLRequestContextStorage; | 89 class URLRequestContextStorage; |
| 91 class URLRequestJobFactoryImpl; | 90 class URLRequestJobFactoryImpl; |
| 92 } // namespace net | 91 } // namespace net |
| (...skipping 539 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 632 mutable std::unique_ptr<certificate_transparency::TreeStateTracker> | 631 mutable std::unique_ptr<certificate_transparency::TreeStateTracker> |
| 633 ct_tree_tracker_; | 632 ct_tree_tracker_; |
| 634 mutable base::Closure ct_tree_tracker_unregistration_; | 633 mutable base::Closure ct_tree_tracker_unregistration_; |
| 635 | 634 |
| 636 const Profile::ProfileType profile_type_; | 635 const Profile::ProfileType profile_type_; |
| 637 | 636 |
| 638 DISALLOW_COPY_AND_ASSIGN(ProfileIOData); | 637 DISALLOW_COPY_AND_ASSIGN(ProfileIOData); |
| 639 }; | 638 }; |
| 640 | 639 |
| 641 #endif // CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ | 640 #endif // CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ |
| OLD | NEW |