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

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

Issue 573353002: Plumbing toward transitioning remote frame back to a local frame. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 3 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/LocalFrame.cpp
diff --git a/Source/core/frame/LocalFrame.cpp b/Source/core/frame/LocalFrame.cpp
index 94a5d12e52729f9b52217b2c695faf5249daa7ce..c78d278e4d6ddca2dfa740e6ada28b89b7ff5068 100644
--- a/Source/core/frame/LocalFrame.cpp
+++ b/Source/core/frame/LocalFrame.cpp
@@ -125,6 +125,11 @@ LocalFrame::~LocalFrame()
(*it)->frameDestroyed();
}
+void LocalFrame::navigate(Document& originDocument, const KURL& url, const Referrer& referrer, bool lockBackForwardList)
+{
+ m_navigationScheduler.scheduleLocationChange(&originDocument, url.string(), referrer, lockBackForwardList);
+}
+
void LocalFrame::detach()
{
// A lot of the following steps can result in the current frame being

Powered by Google App Engine
This is Rietveld 408576698