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 |