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

Side by Side 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: Store SSLStatus in NavigationHandle 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 CONTENT_BROWSER_LOADER_NAVIGATION_RESOURCE_THROTTLE_H_ 5 #ifndef CONTENT_BROWSER_LOADER_NAVIGATION_RESOURCE_THROTTLE_H_
6 #define CONTENT_BROWSER_LOADER_NAVIGATION_RESOURCE_THROTTLE_H_ 6 #define CONTENT_BROWSER_LOADER_NAVIGATION_RESOURCE_THROTTLE_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "base/memory/weak_ptr.h" 9 #include "base/memory/weak_ptr.h"
10 #include "content/public/browser/navigation_throttle.h" 10 #include "content/public/browser/navigation_throttle.h"
11 #include "content/public/browser/resource_throttle.h" 11 #include "content/public/browser/resource_throttle.h"
12 #include "content/public/common/request_context_type.h" 12 #include "content/public/common/request_context_type.h"
13 13
14 namespace net { 14 namespace net {
15 class URLRequest; 15 class URLRequest;
16 } 16 }
17 17
18 namespace content { 18 namespace content {
19 19 class CertStore;
20 class ResourceDispatcherHostDelegate; 20 class ResourceDispatcherHostDelegate;
21 21
22 // This ResourceThrottle is used to convey throttling information to the UI 22 // This ResourceThrottle is used to convey throttling information to the UI
23 // thread during navigations. The UI thread can then use its NavigationThrottle 23 // thread during navigations. The UI thread can then use its NavigationThrottle
24 // mechanism to interact with the navigation. 24 // mechanism to interact with the navigation.
25 class NavigationResourceThrottle : public ResourceThrottle { 25 class NavigationResourceThrottle : public ResourceThrottle {
26 public: 26 public:
27 NavigationResourceThrottle( 27 NavigationResourceThrottle(
28 net::URLRequest* request, 28 net::URLRequest* request,
29 ResourceDispatcherHostDelegate* resource_dispatcher_host_delegate, 29 ResourceDispatcherHostDelegate* resource_dispatcher_host_delegate,
30 CertStore* cert_store,
30 RequestContextType request_context_type); 31 RequestContextType request_context_type);
31 ~NavigationResourceThrottle() override; 32 ~NavigationResourceThrottle() override;
32 33
33 // ResourceThrottle overrides: 34 // ResourceThrottle overrides:
34 void WillStartRequest(bool* defer) override; 35 void WillStartRequest(bool* defer) override;
35 void WillRedirectRequest(const net::RedirectInfo& redirect_info, 36 void WillRedirectRequest(const net::RedirectInfo& redirect_info,
36 bool* defer) override; 37 bool* defer) override;
37 void WillProcessResponse(bool* defer) override; 38 void WillProcessResponse(bool* defer) override;
38 const char* GetNameForLogging() const override; 39 const char* GetNameForLogging() const override;
39 40
40 private: 41 private:
41 void OnUIChecksPerformed(NavigationThrottle::ThrottleCheckResult result); 42 void OnUIChecksPerformed(NavigationThrottle::ThrottleCheckResult result);
42 43
43 net::URLRequest* request_; 44 net::URLRequest* request_;
44 ResourceDispatcherHostDelegate* resource_dispatcher_host_delegate_; 45 ResourceDispatcherHostDelegate* resource_dispatcher_host_delegate_;
46 CertStore* cert_store_;
clamy 2016/08/26 00:06:57 Same question as in NavigationResourceHandler abou
45 RequestContextType request_context_type_; 47 RequestContextType request_context_type_;
46 base::WeakPtrFactory<NavigationResourceThrottle> weak_ptr_factory_; 48 base::WeakPtrFactory<NavigationResourceThrottle> weak_ptr_factory_;
47 49
48 DISALLOW_COPY_AND_ASSIGN(NavigationResourceThrottle); 50 DISALLOW_COPY_AND_ASSIGN(NavigationResourceThrottle);
49 }; 51 };
50 52
51 } // namespace content 53 } // namespace content
52 54
53 #endif // CONTENT_BROWSER_LOADER_NAVIGATION_RESOURCE_THROTTLE_H_ 55 #endif // CONTENT_BROWSER_LOADER_NAVIGATION_RESOURCE_THROTTLE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698