Avi Drissman | 8ba1bad | 2022-09-13 19:22:36 | [diff] [blame] | 1 | // Copyright 2012 The Chromium Authors |
[email protected] | 4360ae7 | 2012-10-09 22:10:46 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
3 | // found in the LICENSE file. | ||||
4 | |||||
[email protected] | 62885ab | 2013-01-23 03:55:16 | [diff] [blame] | 5 | #include "components/navigation_interception/intercept_navigation_delegate.h" |
[email protected] | 4360ae7 | 2012-10-09 22:10:46 | [diff] [blame] | 6 | |
Gyuyoung Kim | cb7965e | 2018-01-25 00:39:01 | [diff] [blame] | 7 | #include <memory> |
Gyuyoung Kim | cb7965e | 2018-01-25 00:39:01 | [diff] [blame] | 8 | |
[email protected] | 4360ae7 | 2012-10-09 22:10:46 | [diff] [blame] | 9 | #include "base/android/jni_android.h" |
10 | #include "base/android/jni_string.h" | ||||
Avi Drissman | 12be031 | 2023-01-11 09:16:09 | [diff] [blame] | 11 | #include "base/functional/bind.h" |
12 | #include "base/functional/callback.h" | ||||
Ryan Hamilton | 7f3bd3d | 2022-04-23 00:07:39 | [diff] [blame] | 13 | #include "base/strings/escape.h" |
Mohamed Heikal | bd64131 | 2019-06-22 00:14:37 | [diff] [blame] | 14 | #include "components/navigation_interception/jni_headers/InterceptNavigationDelegate_jni.h" |
[email protected] | 4360ae7 | 2012-10-09 22:10:46 | [diff] [blame] | 15 | #include "content/public/browser/browser_thread.h" |
David Bokan | 2a48f7bb | 2021-07-09 13:21:36 | [diff] [blame] | 16 | #include "content/public/browser/navigation_handle.h" |
clamy | 40c9e14 | 2015-09-29 11:18:47 | [diff] [blame] | 17 | #include "content/public/browser/navigation_throttle.h" |
jaekyun | 03890319 | 2015-03-31 14:15:59 | [diff] [blame] | 18 | #include "content/public/browser/render_frame_host.h" |
[email protected] | 4360ae7 | 2012-10-09 22:10:46 | [diff] [blame] | 19 | #include "content/public/browser/render_view_host.h" |
[email protected] | 4360ae7 | 2012-10-09 22:10:46 | [diff] [blame] | 20 | #include "content/public/browser/web_contents.h" |
Michael Thiessen | 41821c98 | 2023-08-14 21:45:54 | [diff] [blame] | 21 | #include "content/public/common/page_visibility_state.h" |
Michael Thiessen | 1a49e4d5 | 2022-12-02 21:54:40 | [diff] [blame] | 22 | #include "mojo/public/cpp/bindings/self_owned_receiver.h" |
23 | #include "net/http/http_status_code.h" | ||||
24 | #include "net/http/http_util.h" | ||||
25 | #include "net/url_request/redirect_info.h" | ||||
26 | #include "net/url_request/redirect_util.h" | ||||
27 | #include "services/network/public/cpp/parsed_headers.h" | ||||
28 | #include "services/network/public/cpp/resource_request.h" | ||||
29 | #include "services/network/public/cpp/single_request_url_loader_factory.h" | ||||
30 | #include "services/network/public/mojom/url_response_head.mojom.h" | ||||
Michael Thiessen | ca245a38 | 2022-02-21 16:11:17 | [diff] [blame] | 31 | #include "url/android/gurl_android.h" |
[email protected] | e3b599e | 2013-07-05 07:15:17 | [diff] [blame] | 32 | #include "url/gurl.h" |
[email protected] | 4360ae7 | 2012-10-09 22:10:46 | [diff] [blame] | 33 | |
34 | using base::android::ConvertUTF8ToJavaString; | ||||
35 | using base::android::ScopedJavaLocalRef; | ||||
36 | using content::BrowserThread; | ||||
[email protected] | 4360ae7 | 2012-10-09 22:10:46 | [diff] [blame] | 37 | using content::RenderViewHost; |
38 | using content::WebContents; | ||||
Michael Thiessen | ca245a38 | 2022-02-21 16:11:17 | [diff] [blame] | 39 | using ui::PageTransition; |
[email protected] | 4360ae7 | 2012-10-09 22:10:46 | [diff] [blame] | 40 | |
[email protected] | 8812e3d0 | 2013-05-22 12:38:53 | [diff] [blame] | 41 | namespace navigation_interception { |
[email protected] | 4360ae7 | 2012-10-09 22:10:46 | [diff] [blame] | 42 | |
43 | namespace { | ||||
44 | |||||
thestig | 3b6a2f1 | 2015-09-25 08:17:20 | [diff] [blame] | 45 | const void* const kInterceptNavigationDelegateUserDataKey = |
[email protected] | 4360ae7 | 2012-10-09 22:10:46 | [diff] [blame] | 46 | &kInterceptNavigationDelegateUserDataKey; |
47 | |||||
Michael Thiessen | ca245a38 | 2022-02-21 16:11:17 | [diff] [blame] | 48 | bool CheckIfShouldIgnoreNavigationOnUIThread( |
49 | content::NavigationHandle* navigation_handle) { | ||||
mostynb | ad1e8c96 | 2015-03-25 21:51:12 | [diff] [blame] | 50 | DCHECK_CURRENTLY_ON(BrowserThread::UI); |
Michael Thiessen | ca245a38 | 2022-02-21 16:11:17 | [diff] [blame] | 51 | DCHECK(navigation_handle); |
[email protected] | 4360ae7 | 2012-10-09 22:10:46 | [diff] [blame] | 52 | |
[email protected] | 4360ae7 | 2012-10-09 22:10:46 | [diff] [blame] | 53 | InterceptNavigationDelegate* intercept_navigation_delegate = |
Michael Thiessen | ca245a38 | 2022-02-21 16:11:17 | [diff] [blame] | 54 | InterceptNavigationDelegate::Get(navigation_handle->GetWebContents()); |
[email protected] | 4360ae7 | 2012-10-09 22:10:46 | [diff] [blame] | 55 | if (!intercept_navigation_delegate) |
56 | return false; | ||||
57 | |||||
Michael Thiessen | ca245a38 | 2022-02-21 16:11:17 | [ |