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

Side by Side Diff: content/browser/loader/navigation_resource_throttle.h

Issue 1905033002: PlzNavigate: Move navigation-level mixed content checks to the browser. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@console-security-message
Patch Set: Fixed external handling order change for request start and redirects. Created 4 years, 5 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 13
13 namespace net { 14 namespace net {
14 class URLRequest; 15 class URLRequest;
15 } 16 }
16 17
17 namespace content { 18 namespace content {
18 19
19 class ResourceDispatcherHostDelegate; 20 class ResourceDispatcherHostDelegate;
20 21
21 // This ResourceThrottle is used to convey throttling information to the UI 22 // This ResourceThrottle is used to convey throttling information to the UI
22 // thread during navigations. The UI thread can then use its NavigationThrottle 23 // thread during navigations. The UI thread can then use its NavigationThrottle
23 // mechanism to interact with the navigation. 24 // mechanism to interact with the navigation.
24 class NavigationResourceThrottle : public ResourceThrottle { 25 class NavigationResourceThrottle : public ResourceThrottle {
25 public: 26 public:
26 NavigationResourceThrottle( 27 NavigationResourceThrottle(
27 net::URLRequest* request, 28 net::URLRequest* request,
28 ResourceDispatcherHostDelegate* resource_dispatcher_host_delegate); 29 ResourceDispatcherHostDelegate* resource_dispatcher_host_delegate,
30 RequestContextType fetch_request_context_type);
29 ~NavigationResourceThrottle() override; 31 ~NavigationResourceThrottle() override;
30 32
31 // ResourceThrottle overrides: 33 // ResourceThrottle overrides:
32 void WillStartRequest(bool* defer) override; 34 void WillStartRequest(bool* defer) override;
33 void WillRedirectRequest(const net::RedirectInfo& redirect_info, 35 void WillRedirectRequest(const net::RedirectInfo& redirect_info,
34 bool* defer) override; 36 bool* defer) override;
35 void WillProcessResponse(bool* defer) override; 37 void WillProcessResponse(bool* defer) override;
36 const char* GetNameForLogging() const override; 38 const char* GetNameForLogging() const override;
37 39
38 private: 40 private:
39 void OnUIChecksPerformed(NavigationThrottle::ThrottleCheckResult result); 41 void OnUIChecksPerformed(NavigationThrottle::ThrottleCheckResult result);
40 42
41 net::URLRequest* request_; 43 net::URLRequest* request_;
42 ResourceDispatcherHostDelegate* resource_dispatcher_host_delegate_; 44 ResourceDispatcherHostDelegate* resource_dispatcher_host_delegate_;
45 RequestContextType fetch_request_context_type_;
43 base::WeakPtrFactory<NavigationResourceThrottle> weak_ptr_factory_; 46 base::WeakPtrFactory<NavigationResourceThrottle> weak_ptr_factory_;
44 47
45 DISALLOW_COPY_AND_ASSIGN(NavigationResourceThrottle); 48 DISALLOW_COPY_AND_ASSIGN(NavigationResourceThrottle);
46 }; 49 };
47 50
48 } // namespace content 51 } // namespace content
49 52
50 #endif // CONTENT_BROWSER_LOADER_NAVIGATION_RESOURCE_THROTTLE_H_ 53 #endif // CONTENT_BROWSER_LOADER_NAVIGATION_RESOURCE_THROTTLE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698