| Index: content/browser/frame_host/navigation_controller_impl_browsertest.cc
|
| diff --git a/content/browser/frame_host/navigation_controller_impl_browsertest.cc b/content/browser/frame_host/navigation_controller_impl_browsertest.cc
|
| index f079f7d1727362c8fcfa61d6a87b4aecea97c042..e8bf8796fc9c16098d4d6e80bdadfb5a42c34000 100644
|
| --- a/content/browser/frame_host/navigation_controller_impl_browsertest.cc
|
| +++ b/content/browser/frame_host/navigation_controller_impl_browsertest.cc
|
| @@ -6690,8 +6690,8 @@ IN_PROC_BROWSER_TEST_F(NavigationControllerBrowserTest,
|
| NavigationControllerImpl& controller = static_cast<NavigationControllerImpl&>(
|
| shell()->web_contents()->GetController());
|
|
|
| - // Reload triggers a reload of ReloadType::MAIN_RESOURCE. The first reload
|
| - // should not be counted.
|
| + // Reload triggers a reload of ReloadType::NORMAL. The first reload should
|
| + // not be counted.
|
| controller.Reload(false);
|
| EXPECT_TRUE(WaitForLoadStop(shell()->web_contents()));
|
| histogram.ExpectTotalCount(kReloadToReloadMetricName, 0);
|
| @@ -6726,8 +6726,8 @@ IN_PROC_BROWSER_TEST_F(NavigationControllerBrowserTest,
|
| histogram.ExpectTotalCount(kReloadToReloadMetricName, 2);
|
| histogram.ExpectTotalCount(kReloadMainResourceToReloadMetricName, 1);
|
|
|
| - // Another reload of ReloadType::MAIN_RESOURCE should be counted by both
|
| - // metrics again.
|
| + // Another reload of ReloadType::NORMAL should be counted by both metrics
|
| + // again.
|
| controller.Reload(false);
|
| EXPECT_TRUE(WaitForLoadStop(shell()->web_contents()));
|
| histogram.ExpectTotalCount(kReloadToReloadMetricName, 3);
|
|
|