| Index: content/browser/frame_host/navigation_controller_impl.cc
|
| diff --git a/content/browser/frame_host/navigation_controller_impl.cc b/content/browser/frame_host/navigation_controller_impl.cc
|
| index 42d6032375f1d0a0118c0701da49f71b06a35828..d2ddcae2215b7a69152fb83b5c66413cf563a44d 100644
|
| --- a/content/browser/frame_host/navigation_controller_impl.cc
|
| +++ b/content/browser/frame_host/navigation_controller_impl.cc
|
| @@ -265,12 +265,7 @@ void NavigationControllerImpl::Restore(
|
| }
|
|
|
| void NavigationControllerImpl::Reload(bool check_for_repost) {
|
| - ReloadType type = ReloadType::NORMAL;
|
| - if (base::FeatureList::IsEnabled(
|
| - features::kNonValidatingReloadOnNormalReload)) {
|
| - type = ReloadType::MAIN_RESOURCE;
|
| - }
|
| - ReloadInternal(check_for_repost, type);
|
| + ReloadInternal(check_for_repost, ReloadType::MAIN_RESOURCE);
|
| }
|
| void NavigationControllerImpl::ReloadToRefreshContent(bool check_for_repost) {
|
| ReloadInternal(check_for_repost, ReloadType::MAIN_RESOURCE);
|
|
|