Index: Source/core/frame/History.cpp |
diff --git a/Source/core/frame/History.cpp b/Source/core/frame/History.cpp |
index 5edbb8df6e0494700156b74fb172f99721c68bac..46d5e3a4c665139e1f0b6da44f8301f72f129bbd 100644 |
--- a/Source/core/frame/History.cpp |
+++ b/Source/core/frame/History.cpp |
@@ -111,7 +111,7 @@ void History::go(int distance) |
if (!m_frame) |
return; |
- m_frame->navigationScheduler()->scheduleHistoryNavigation(distance); |
+ m_frame->navigationScheduler().scheduleHistoryNavigation(distance); |
} |
void History::go(ExecutionContext* context, int distance) |
@@ -127,7 +127,7 @@ void History::go(ExecutionContext* context, int distance) |
if (!activeDocument->canNavigate(m_frame)) |
return; |
- m_frame->navigationScheduler()->scheduleHistoryNavigation(distance); |
+ m_frame->navigationScheduler().scheduleHistoryNavigation(distance); |
} |
KURL History::urlForState(const String& urlString) |