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

Unified Diff: Source/core/frame/RemoteFrame.cpp

Issue 1156473002: Refactor FrameLoader loading interface (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Addressed Nate's comments Created 5 years, 6 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: Source/core/frame/RemoteFrame.cpp
diff --git a/Source/core/frame/RemoteFrame.cpp b/Source/core/frame/RemoteFrame.cpp
index 3ae90324d8aa8ddb2612311a82427c0980bf17b4..da0b67c6b21551d56f6d0f4f846575b4fde46190 100644
--- a/Source/core/frame/RemoteFrame.cpp
+++ b/Source/core/frame/RemoteFrame.cpp
@@ -69,9 +69,9 @@ void RemoteFrame::navigate(Document& originDocument, const KURL& url, bool lockB
remoteFrameClient()->navigate(request, lockBackForwardList);
}
-void RemoteFrame::reload(ReloadPolicy reloadPolicy, ClientRedirectPolicy clientRedirectPolicy)
+void RemoteFrame::reload(FrameLoadType frameLoadType, ClientRedirectPolicy clientRedirectPolicy)
{
- remoteFrameClient()->reload(reloadPolicy, clientRedirectPolicy);
+ remoteFrameClient()->reload(frameLoadType, clientRedirectPolicy);
}
void RemoteFrame::detach()

Powered by Google App Engine
This is Rietveld 408576698