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

Unified Diff: third_party/WebKit/Source/web/WebRuntimeFeatures.cpp

Issue 2257743002: Restore user state on ReloadwithoutSubResourceCacheRevalidation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressing Torne's comments at #37 Created 4 years, 4 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/web/WebRuntimeFeatures.cpp
diff --git a/third_party/WebKit/Source/web/WebRuntimeFeatures.cpp b/third_party/WebKit/Source/web/WebRuntimeFeatures.cpp
index a51c1ff626f4adafb40ae691a74bbd995477d4d5..c11ccfbefbe85a7d5b1dfc910974b43ead628854 100644
--- a/third_party/WebKit/Source/web/WebRuntimeFeatures.cpp
+++ b/third_party/WebKit/Source/web/WebRuntimeFeatures.cpp
@@ -165,6 +165,11 @@ void WebRuntimeFeatures::enableMediaDocumentDownloadButton(bool enable)
RuntimeEnabledFeatures::setMediaDocumentDownloadButtonEnabled(enable);
}
+void WebRuntimeFeatures::enableNonValidatingReload(bool enable)
+{
+ RuntimeEnabledFeatures::setNonValidatingReloadEnabled(enable);
+}
+
void WebRuntimeFeatures::enableNotificationConstructor(bool enable)
{
RuntimeEnabledFeatures::setNotificationConstructorEnabled(enable);

Powered by Google App Engine
This is Rietveld 408576698