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

Unified Diff: Source/web/WebRemoteFrameImpl.cpp

Issue 1156473002: Refactor FrameLoader loading interface (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed issue with inital history navigation in child frames Created 5 years, 7 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/web/WebRemoteFrameImpl.cpp
diff --git a/Source/web/WebRemoteFrameImpl.cpp b/Source/web/WebRemoteFrameImpl.cpp
index 64e9f01cbc4fbdd38bcc1d0a2f92e4da2161ba8f..3f97b94f3f473a6e820c3810d10525cf755dfac7 100644
--- a/Source/web/WebRemoteFrameImpl.cpp
+++ b/Source/web/WebRemoteFrameImpl.cpp
@@ -296,6 +296,26 @@ v8::Local<v8::Context> WebRemoteFrameImpl::mainWorldScriptContext() const
return v8::Local<v8::Context>();
}
+WebURLRequest WebRemoteFrameImpl::RequestFromHistoryItem(const WebHistoryItem&,
+ WebURLRequest::CachePolicy) const
+{
+ ASSERT_NOT_REACHED();
+ return WebURLRequest();
+}
+
+WebURLRequest WebRemoteFrameImpl::RequestForReload(const WebHistoryItem&, WebFrameLoadType,
+ const WebURL&) const
+{
+ ASSERT_NOT_REACHED();
+ return WebURLRequest();
+}
+
+WebHistoryItem WebRemoteFrameImpl::CurrentItem() const
+{
+ ASSERT_NOT_REACHED();
+ return WebHistoryItem();
+}
+
void WebRemoteFrameImpl::reload(bool ignoreCache)
{
ASSERT_NOT_REACHED();
@@ -306,7 +326,7 @@ void WebRemoteFrameImpl::reloadWithOverrideURL(const WebURL& overrideUrl, bool i
ASSERT_NOT_REACHED();
}
-void WebRemoteFrameImpl::loadRequest(const WebURLRequest&)
+void WebRemoteFrameImpl::loadRequest(const WebURLRequest&, WebFrameLoadType, const WebHistoryItem&)
{
ASSERT_NOT_REACHED();
}

Powered by Google App Engine
This is Rietveld 408576698