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

Unified Diff: components/navigation_interception/intercept_navigation_throttle_unittest.cc

Issue 2499313003: Set user_gesture bit at NavigationHandle creation time. (Closed)
Patch Set: rebase Created 4 years 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_throttle_unittest.cc
diff --git a/components/navigation_interception/intercept_navigation_throttle_unittest.cc b/components/navigation_interception/intercept_navigation_throttle_unittest.cc
index a6d27c4945d517894e1d68dc88e5570dc530345c..9ebe6bded792b0dfbf0ada9e54efad53e64451c8 100644
--- a/components/navigation_interception/intercept_navigation_throttle_unittest.cc
+++ b/components/navigation_interception/intercept_navigation_throttle_unittest.cc
@@ -71,7 +71,7 @@ class InterceptNavigationThrottleTest
base::Unretained(mock_callback_receiver_.get())),
true));
return test_handle->CallWillStartRequestForTesting(
- is_post, content::Referrer(), false, ui::PAGE_TRANSITION_LINK, false);
+ is_post, content::Referrer(), ui::PAGE_TRANSITION_LINK, false);
}
NavigationThrottle::ThrottleCheckResult Simulate302() {
@@ -85,7 +85,7 @@ class InterceptNavigationThrottleTest
base::Unretained(mock_callback_receiver_.get())),
true));
test_handle->CallWillStartRequestForTesting(
- true, content::Referrer(), false, ui::PAGE_TRANSITION_LINK, false);
+ true, content::Referrer(), ui::PAGE_TRANSITION_LINK, false);
return test_handle->CallWillRedirectRequestForTesting(GURL(kTestUrl), false,
GURL(), false);
}

Powered by Google App Engine
This is Rietveld 408576698