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

Unified Diff: content/browser/loader/navigation_resource_handler.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_handler.h
diff --git a/content/browser/loader/navigation_resource_handler.h b/content/browser/loader/navigation_resource_handler.h
index 48c86251d1648fb163cf49d109ed2368c78d27db..7262fd0eccdef3194770cf8361735fdcce868b16 100644
--- a/content/browser/loader/navigation_resource_handler.h
+++ b/content/browser/loader/navigation_resource_handler.h
@@ -10,7 +10,7 @@
#include "content/browser/loader/stream_writer.h"
namespace content {
-
+class CertStore;
class NavigationURLLoaderImplCore;
class ResourceDispatcherHostDelegate;
@@ -20,7 +20,8 @@ class NavigationResourceHandler : public ResourceHandler {
NavigationResourceHandler(
net::URLRequest* request,
NavigationURLLoaderImplCore* core,
- ResourceDispatcherHostDelegate* resource_dispatcher_host_delegate);
+ ResourceDispatcherHostDelegate* resource_dispatcher_host_delegate,
+ CertStore* cert_store);
~NavigationResourceHandler() override;
// Called by the loader the cancel the request.
@@ -56,6 +57,7 @@ class NavigationResourceHandler : public ResourceHandler {
NavigationURLLoaderImplCore* core_;
StreamWriter writer_;
ResourceDispatcherHostDelegate* resource_dispatcher_host_delegate_;
+ CertStore* cert_store_;
DISALLOW_COPY_AND_ASSIGN(NavigationResourceHandler);
};

Powered by Google App Engine
This is Rietveld 408576698