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

Unified Diff: components/navigation_interception/intercept_navigation_resource_throttle.cc

Issue 1091253008: Fix an issue that external protocol in subframes are not handled on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase and fix test Created 5 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: components/navigation_interception/intercept_navigation_resource_throttle.cc
diff --git a/components/navigation_interception/intercept_navigation_resource_throttle.cc b/components/navigation_interception/intercept_navigation_resource_throttle.cc
index 05741e65c2101bdc3219ac6933cf1fbf47d32b5a..1b0b89f43d396926c777878c2cf92179ed2e61e6 100644
--- a/components/navigation_interception/intercept_navigation_resource_throttle.cc
+++ b/components/navigation_interception/intercept_navigation_resource_throttle.cc
@@ -112,7 +112,7 @@ bool InterceptNavigationResourceThrottle::CheckIfShouldIgnoreNavigation(
Referrer::SanitizeForRequest(
url, Referrer(GURL(request_->referrer()), info->GetReferrerPolicy())),
info->HasUserGesture(), method == "POST", info->GetPageTransition(),
- is_redirect, is_external_protocol);
+ is_redirect, is_external_protocol, true);
BrowserThread::PostTask(
BrowserThread::UI,

Powered by Google App Engine
This is Rietveld 408576698