summaryrefslogtreecommitdiff
path: root/chromium/content/browser/loader/navigation_url_loader.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/content/browser/loader/navigation_url_loader.h')
-rw-r--r--chromium/content/browser/loader/navigation_url_loader.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/chromium/content/browser/loader/navigation_url_loader.h b/chromium/content/browser/loader/navigation_url_loader.h
index 18e4859cfdc..7322f606e4e 100644
--- a/chromium/content/browser/loader/navigation_url_loader.h
+++ b/chromium/content/browser/loader/navigation_url_loader.h
@@ -59,6 +59,7 @@ class CONTENT_EXPORT NavigationURLLoader {
prefetched_signed_exchange_cache,
NavigationURLLoaderDelegate* delegate,
bool is_served_from_back_forward_cache,
+ mojo::PendingRemote<network::mojom::CookieAccessObserver> cookie_observer,
std::vector<std::unique_ptr<NavigationLoaderInterceptor>>
initial_interceptors = {});
@@ -71,9 +72,11 @@ class CONTENT_EXPORT NavigationURLLoader {
// request. |new_previews_state| will be updated for newly created URLLoaders,
// but the existing default URLLoader will not see |new_previews_state| unless
// the URLLoader happens to be reset.
- virtual void FollowRedirect(const std::vector<std::string>& removed_headers,
- const net::HttpRequestHeaders& modified_headers,
- PreviewsState new_previews_state) = 0;
+ virtual void FollowRedirect(
+ const std::vector<std::string>& removed_headers,
+ const net::HttpRequestHeaders& modified_headers,
+ const net::HttpRequestHeaders& modified_cors_exempt_headers,
+ PreviewsState new_previews_state) = 0;
protected:
NavigationURLLoader() {}