Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1459)

Unified Diff: content/browser/loader/navigation_resource_throttle.h

Issue 2239273002: Don't use SSLStatus from FrameHostMsg_DidCommitProvisionalLoad and instead cache it on the browser … (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/loader/navigation_resource_throttle.h
diff --git a/content/browser/loader/navigation_resource_throttle.h b/content/browser/loader/navigation_resource_throttle.h
index 6de648907c21eb68fac42100fa9b18103b12f679..74dfe7936f6f5dbaba9d859eda7bb66c793ff123 100644
--- a/content/browser/loader/navigation_resource_throttle.h
+++ b/content/browser/loader/navigation_resource_throttle.h
@@ -16,7 +16,7 @@ class URLRequest;
}
namespace content {
-
+class CertStore;
class ResourceDispatcherHostDelegate;
// This ResourceThrottle is used to convey throttling information to the UI
@@ -27,6 +27,7 @@ class NavigationResourceThrottle : public ResourceThrottle {
NavigationResourceThrottle(
net::URLRequest* request,
ResourceDispatcherHostDelegate* resource_dispatcher_host_delegate,
+ CertStore* cert_store,
RequestContextType request_context_type);
~NavigationResourceThrottle() override;
@@ -42,6 +43,7 @@ class NavigationResourceThrottle : public ResourceThrottle {
net::URLRequest* request_;
ResourceDispatcherHostDelegate* resource_dispatcher_host_delegate_;
+ CertStore* cert_store_;
RequestContextType request_context_type_;
base::WeakPtrFactory<NavigationResourceThrottle> weak_ptr_factory_;

Powered by Google App Engine
This is Rietveld 408576698