Index: chrome/browser/profiles/profile_io_data.h |
diff --git a/chrome/browser/profiles/profile_io_data.h b/chrome/browser/profiles/profile_io_data.h |
index f63dd0f94767e881162037041eaebc7a367b15ed..dd45c52b5f75c02f29b4a4c7f547b89e8a00c212 100644 |
--- a/chrome/browser/profiles/profile_io_data.h |
+++ b/chrome/browser/profiles/profile_io_data.h |
@@ -24,6 +24,7 @@ |
#include "components/content_settings/core/common/content_settings_types.h" |
#include "content/public/browser/content_browser_client.h" |
#include "content/public/browser/resource_context.h" |
+#include "net/cert/ct_verifier.h" |
#include "net/cookies/cookie_monster.h" |
#include "net/http/http_cache.h" |
#include "net/http/http_network_session.h" |
@@ -540,6 +541,7 @@ class ProfileIOData { |
fraudulent_certificate_reporter_; |
mutable scoped_ptr<net::ProxyService> proxy_service_; |
mutable scoped_ptr<net::TransportSecurityState> transport_security_state_; |
+ mutable scoped_ptr<net::CTVerifier> cert_transparency_verifier_; |
mutable scoped_ptr<net::HttpServerProperties> |
http_server_properties_; |
#if defined(OS_CHROMEOS) |
@@ -587,6 +589,9 @@ class ProfileIOData { |
mutable scoped_ptr<DevToolsNetworkController> network_controller_; |
+ // Must be deleted before the URLRequestContexts |
+ mutable scoped_ptr<net::CTVerifier::Observer> cert_transparency_observer_; |
Ryan Sleevi
2015/06/29 11:58:13
XXX
|
+ |
// TODO(jhawkins): Remove once crbug.com/102004 is fixed. |
bool initialized_on_UI_thread_; |