| 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 11 matching lines...) Expand all Loading... |
| 22 #include "chrome/browser/custom_handlers/protocol_handler_registry.h" | 22 #include "chrome/browser/custom_handlers/protocol_handler_registry.h" |
| 23 #include "chrome/browser/devtools/devtools_network_controller_handle.h" | 23 #include "chrome/browser/devtools/devtools_network_controller_handle.h" |
| 24 #include "chrome/browser/io_thread.h" | 24 #include "chrome/browser/io_thread.h" |
| 25 #include "chrome/browser/profiles/profile.h" | 25 #include "chrome/browser/profiles/profile.h" |
| 26 #include "chrome/browser/profiles/storage_partition_descriptor.h" | 26 #include "chrome/browser/profiles/storage_partition_descriptor.h" |
| 27 #include "components/content_settings/core/common/content_settings_types.h" | 27 #include "components/content_settings/core/common/content_settings_types.h" |
| 28 #include "components/policy/core/browser/url_blacklist_manager.h" | 28 #include "components/policy/core/browser/url_blacklist_manager.h" |
| 29 #include "components/prefs/pref_member.h" | 29 #include "components/prefs/pref_member.h" |
| 30 #include "content/public/browser/content_browser_client.h" | 30 #include "content/public/browser/content_browser_client.h" |
| 31 #include "content/public/browser/resource_context.h" | 31 #include "content/public/browser/resource_context.h" |
| 32 #include "net/cert/ct_verifier.h" | |
| 33 #include "net/cookies/cookie_monster.h" | 32 #include "net/cookies/cookie_monster.h" |
| 34 #include "net/http/http_cache.h" | 33 #include "net/http/http_cache.h" |
| 35 #include "net/http/http_network_session.h" | 34 #include "net/http/http_network_session.h" |
| 36 #include "net/url_request/url_request_context.h" | 35 #include "net/url_request/url_request_context.h" |
| 37 #include "net/url_request/url_request_interceptor.h" | 36 #include "net/url_request/url_request_interceptor.h" |
| 38 #include "net/url_request/url_request_job_factory.h" | 37 #include "net/url_request/url_request_job_factory.h" |
| 39 | 38 |
| 40 class ChromeHttpUserAgentSettings; | 39 class ChromeHttpUserAgentSettings; |
| 41 class ChromeNetworkDelegate; | 40 class ChromeNetworkDelegate; |
| 42 class ChromeURLRequestContextGetter; | 41 class ChromeURLRequestContextGetter; |
| (...skipping 25 matching lines...) Expand all Loading... |
| 68 | 67 |
| 69 namespace extensions { | 68 namespace extensions { |
| 70 class ExtensionThrottleManager; | 69 class ExtensionThrottleManager; |
| 71 class InfoMap; | 70 class InfoMap; |
| 72 } | 71 } |
| 73 | 72 |
| 74 namespace net { | 73 namespace net { |
| 75 class CertVerifier; | 74 class CertVerifier; |
| 76 class ChannelIDService; | 75 class ChannelIDService; |
| 77 class CookieStore; | 76 class CookieStore; |
| 77 class CTVerifier; |
| 78 class FtpTransactionFactory; | 78 class FtpTransactionFactory; |
| 79 class HttpServerProperties; | 79 class HttpServerProperties; |
| 80 class HttpTransactionFactory; | 80 class HttpTransactionFactory; |
| 81 class ProxyConfigService; | 81 class ProxyConfigService; |
| 82 class ProxyService; | 82 class ProxyService; |
| 83 class ReportSender; | 83 class ReportSender; |
| 84 class SSLConfigService; | 84 class SSLConfigService; |
| 85 class TransportSecurityPersister; | 85 class TransportSecurityPersister; |
| 86 class TransportSecurityState; | 86 class TransportSecurityState; |
| 87 class URLRequestJobFactoryImpl; | 87 class URLRequestJobFactoryImpl; |
| (...skipping 528 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 616 mutable std::unique_ptr<certificate_transparency::TreeStateTracker> | 616 mutable std::unique_ptr<certificate_transparency::TreeStateTracker> |
| 617 ct_tree_tracker_; | 617 ct_tree_tracker_; |
| 618 mutable base::Closure ct_tree_tracker_unregistration_; | 618 mutable base::Closure ct_tree_tracker_unregistration_; |
| 619 | 619 |
| 620 const Profile::ProfileType profile_type_; | 620 const Profile::ProfileType profile_type_; |
| 621 | 621 |
| 622 DISALLOW_COPY_AND_ASSIGN(ProfileIOData); | 622 DISALLOW_COPY_AND_ASSIGN(ProfileIOData); |
| 623 }; | 623 }; |
| 624 | 624 |
| 625 #endif // CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ | 625 #endif // CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ |
| OLD | NEW |