Index: Source/core/frame/LocalFrame.cpp |
diff --git a/Source/core/frame/LocalFrame.cpp b/Source/core/frame/LocalFrame.cpp |
index 9c32d1e80efeb8b446a097cd40902fbc0a818a0c..94f545258d10333e6848572bd05140e53f29282d 100644 |
--- a/Source/core/frame/LocalFrame.cpp |
+++ b/Source/core/frame/LocalFrame.cpp |
@@ -157,6 +157,11 @@ void LocalFrame::trace(Visitor* visitor) |
Frame::trace(visitor); |
} |
+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 |