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

Unified Diff: third_party/WebKit/Source/web/WebViewImpl.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/web/WebViewImpl.cpp
diff --git a/third_party/WebKit/Source/web/WebViewImpl.cpp b/third_party/WebKit/Source/web/WebViewImpl.cpp
index c335f2d6aaae5cf7f437726f82bf680da2a8c954..101b4996b6491be950bf4a55c23d687e70fa289a 100644
--- a/third_party/WebKit/Source/web/WebViewImpl.cpp
+++ b/third_party/WebKit/Source/web/WebViewImpl.cpp
@@ -2838,8 +2838,8 @@ void WebViewImpl::setPageEncoding(const WebString& encodingName)
FrameLoadRequest request = FrameLoadRequest(
nullptr,
m_page->deprecatedLocalMainFrame()->loader().resourceRequestForReload(
- FrameLoadTypeReload, KURL(), ClientRedirect));
- request.setClientRedirect(ClientRedirect);
+ FrameLoadTypeReload, KURL(), ClientRedirectPolicy::ClientRedirect));
+ request.setClientRedirect(ClientRedirectPolicy::ClientRedirect);
m_page->deprecatedLocalMainFrame()->loader().load(request, FrameLoadTypeReload);
}
}
« no previous file with comments | « third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp ('k') | third_party/WebKit/Source/web/tests/FrameTestHelpers.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698