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

Unified Diff: content/browser/frame_host/navigation_controller_impl.cc

Issue 2541363002: Reload Reloaded: remove experimental flag that has been enabled by default (Closed)
Patch Set: 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: 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);
« no previous file with comments | « content/browser/frame_host/navigation_controller_impl.h ('k') | content/browser/frame_host/navigator_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698