summaryrefslogtreecommitdiffstats
path: root/WebCore/page/History.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/page/History.cpp')
-rw-r--r--WebCore/page/History.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/WebCore/page/History.cpp b/WebCore/page/History.cpp
index 337f5b2..3d463b6 100644
--- a/WebCore/page/History.cpp
+++ b/WebCore/page/History.cpp
@@ -63,21 +63,21 @@ void History::back()
{
if (!m_frame)
return;
- m_frame->redirectScheduler()->scheduleHistoryNavigation(-1);
+ m_frame->navigationScheduler()->scheduleHistoryNavigation(-1);
}
void History::forward()
{
if (!m_frame)
return;
- m_frame->redirectScheduler()->scheduleHistoryNavigation(1);
+ m_frame->navigationScheduler()->scheduleHistoryNavigation(1);
}
void History::go(int distance)
{
if (!m_frame)
return;
- m_frame->redirectScheduler()->scheduleHistoryNavigation(distance);
+ m_frame->navigationScheduler()->scheduleHistoryNavigation(distance);
}
KURL History::urlForState(const String& urlString)