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

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

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: third_party/WebKit/Source/core/loader/FrameLoader.cpp
diff --git a/third_party/WebKit/Source/core/loader/FrameLoader.cpp b/third_party/WebKit/Source/core/loader/FrameLoader.cpp
index 59426dd8146ebbc2ff770d250539ebfa8f54c7a1..29d7a9eb33b5a37c38dd0d0065ac9f42044f80a1 100644
--- a/third_party/WebKit/Source/core/loader/FrameLoader.cpp
+++ b/third_party/WebKit/Source/core/loader/FrameLoader.cpp
@@ -121,10 +121,6 @@ bool isReloadLoadType(FrameLoadType type) {
}
static bool needsHistoryItemRestore(FrameLoadType type) {
- if (!RuntimeEnabledFeatures::
- reloadwithoutSubResourceCacheRevalidationEnabled() &&
- type == FrameLoadTypeReloadMainResource)
- return false;
// TODO(toyoshim): Shall we return true for FrameLoadTypeInitialHistoryLoad
// too?
return type == FrameLoadTypeBackForward || isReloadLoadType(type);

Powered by Google App Engine
This is Rietveld 408576698