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

Unified Diff: third_party/WebKit/Source/core/frame/History.cpp

Issue 1843663005: Change bool ignoreCache to WebFrameLoadType (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 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/frame/History.cpp
diff --git a/third_party/WebKit/Source/core/frame/History.cpp b/third_party/WebKit/Source/core/frame/History.cpp
index 5870e5f14fde44eaeb8d852ed1884866cf887cc9..7db4f36b13929c1dd3ac58c494009625b6ebe858 100644
--- a/third_party/WebKit/Source/core/frame/History.cpp
+++ b/third_party/WebKit/Source/core/frame/History.cpp
@@ -170,7 +170,7 @@ void History::go(ExecutionContext* context, int delta)
if (delta)
m_frame->loader().client()->navigateBackForward(delta);
else
- m_frame->reload(FrameLoadTypeReload, ClientRedirect);
+ m_frame->reload(FrameLoadTypeReload, ClientRedirectPolicy::ClientRedirect);
}
KURL History::urlForState(const String& urlString)
« no previous file with comments | « third_party/WebKit/Source/core/frame/FrameTypes.h ('k') | third_party/WebKit/Source/core/frame/LocalFrame.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698