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

Unified Diff: third_party/WebKit/Source/core/loader/NavigationScheduler.cpp

Issue 2752203002: FasterLocationReload: remove the field trial flag (Closed)
Patch Set: Created 3 years, 9 months 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: third_party/WebKit/Source/core/loader/NavigationScheduler.cpp
diff --git a/third_party/WebKit/Source/core/loader/NavigationScheduler.cpp b/third_party/WebKit/Source/core/loader/NavigationScheduler.cpp
index 92e2c13e6cdbddf3dbd3e4558ebf48aaf020271d..f71c9d72cebed18bc0335bf7442839a649213411 100644
--- a/third_party/WebKit/Source/core/loader/NavigationScheduler.cpp
+++ b/third_party/WebKit/Source/core/loader/NavigationScheduler.cpp
@@ -271,10 +271,7 @@ class ScheduledReload final : public ScheduledNavigation {
request.setClientRedirect(ClientRedirectPolicy::ClientRedirect);
maybeLogScheduledNavigationClobber(ScheduledNavigationType::ScheduledReload,
frame);
- if (RuntimeEnabledFeatures::fasterLocationReloadEnabled())
- frame->loader().load(request, FrameLoadTypeReloadMainResource);
- else
- frame->loader().load(request, FrameLoadTypeReload);
+ frame->loader().load(request, FrameLoadTypeReloadMainResource);
}
private:
« no previous file with comments | « third_party/WebKit/Source/core/frame/Location.cpp ('k') | third_party/WebKit/Source/modules/plugins/DOMPluginArray.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698