| Index: components/navigation_interception/intercept_navigation_throttle.cc
|
| diff --git a/components/navigation_interception/intercept_navigation_throttle.cc b/components/navigation_interception/intercept_navigation_throttle.cc
|
| index 84292c9f8bb201cb2eb98f1eeb99e05dbe5be8cb..d9d45cd79e6b7133d5f484d51772a8b26779133c 100644
|
| --- a/components/navigation_interception/intercept_navigation_throttle.cc
|
| +++ b/components/navigation_interception/intercept_navigation_throttle.cc
|
| @@ -67,9 +67,9 @@ InterceptNavigationThrottle::CheckIfShouldIgnoreNavigation(bool is_redirect) {
|
| DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
|
| NavigationParams navigation_params(
|
| navigation_handle()->GetURL(), navigation_handle()->GetReferrer(),
|
| - navigation_handle()->HasUserGesture(), navigation_handle()->IsPost(),
|
| - navigation_handle()->GetPageTransition(), is_redirect,
|
| - navigation_handle()->IsExternalProtocol(), true);
|
| + navigation_handle()->GetNavigationGesture(),
|
| + navigation_handle()->IsPost(), navigation_handle()->GetPageTransition(),
|
| + is_redirect, navigation_handle()->IsExternalProtocol(), true);
|
|
|
| if (run_callback_synchronously_) {
|
| bool should_ignore_navigation = should_ignore_callback_.Run(
|
|
|