Chromium Code Reviews| 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_; |
|
clamy
2016/08/26 00:06:57
Same question as in NavigationResourceHandler abou
|
| RequestContextType request_context_type_; |
| base::WeakPtrFactory<NavigationResourceThrottle> weak_ptr_factory_; |