| 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);
|
| }
|
|
|