Searched refs:backForward (Results 1 - 19 of 19) sorted by relevance

/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
H A DInjectedBundleBackForwardList.cpp46 return InjectedBundleBackForwardListItem::create(page->backForward()->itemAtIndex(index));
56 return page->backForward()->backCount();
66 return page->backForward()->forwardCount();
76 static_cast<WebBackForwardListProxy*>(page->backForward()->client())->clear();
/external/webkit/Source/WebCore/wml/
H A DWMLPrevElement.cpp68 pageState->page()->backForward()->goBack();
H A DWMLDocument.cpp72 HistoryItem* item = page->backForward()->backItem();
H A DWMLPageState.cpp69 m_page->backForward()->client()->clearWMLPageHistory();
125 HistoryItem* previousItem = page->backForward()->backItem();
129 HistoryItem* currentItem = page->backForward()->currentItem();
H A DWMLDoElement.cpp94 pageState->page()->backForward()->goBack();
/external/webkit/Source/WebCore/loader/
H A DNavigationScheduler.cpp189 frame->page()->backForward()->goBackOrForward(m_historySteps);
375 BackForwardController* backForward = m_frame->page()->backForward();
376 if (steps > backForward->forwardCount() || -steps > backForward->backCount()) {
H A DHistoryController.cpp255 RefPtr<HistoryItem> currentItem = page->backForward()->currentItem();
256 page->backForward()->setCurrentItem(targetItem);
760 page->backForward()->addItem(topItem.release());
805 page->backForward()->addItem(topItem.release());
H A DFrameLoader.cpp2458 page->backForward()->setCurrentItem(item.get());
3029 page->backForward()->setCurrentItem(resetItem);
3205 if (!m_didPerformFirstNavigation && page->backForward()->currentItem() && !page->backForward()->backItem() && !page->backForward()->forwardItem()) {
/external/webkit/Source/WebCore/page/
H A DHistory.cpp61 return m_frame->page()->backForward()->count();
H A DPage.cpp223 backForward()->close();
297 HistoryItem* item = backForward()->backItem();
308 HistoryItem* item = backForward()->forwardItem();
321 if (distance > 0 && distance <= backForward()->forwardCount())
323 if (distance < 0 && -distance <= backForward()->backCount())
333 HistoryItem* item = backForward()->itemAtIndex(distance);
336 if (int forwardCount = backForward()->forwardCount())
337 item = backForward()->itemAtIndex(forwardCount);
339 if (int backCount = backForward()->backCount())
340 item = backForward()
[all...]
H A DSettings.cpp515 int first = -m_page->backForward()->backCount();
516 int last = m_page->backForward()->forwardCount();
518 pageCache()->remove(m_page->backForward()->itemAtIndex(i));
H A DContextMenuController.cpp250 page->backForward()->goBackOrForward(-1);
254 page->backForward()->goBackOrForward(1);
809 if (frame->page() && frame->page()->backForward()->canGoBackOrForward(-1))
812 if (frame->page() && frame->page()->backForward()->canGoBackOrForward(1))
1186 shouldEnable = frame->page() && frame->page()->backForward()->canGoBackOrForward(-1);
1189 shouldEnable = frame->page() && frame->page()->backForward()->canGoBackOrForward(1);
H A DPage.h147 // DEPRECATED. Use backForward() instead of the following 6 functions.
191 BackForwardController* backForward() const { return m_backForwardController.get(); } function in class:WebCore::Page
H A DDOMWindow.cpp931 if (!(page->openedByDOM() || page->backForward()->count() <= 1 || allowScriptsToCloseWindows))
/external/webkit/Source/WebKit2/WebProcess/Downloads/mac/
H A DDownloadMac.mm69 int backCount = page->backForward()->backCount();
73 HistoryItem* historyItem = page->backForward()->itemAtIndex(-backIndex);
/external/webkit/Source/WebCore/history/
H A DPageCache.cpp195 if (!page->backForward()->isActive()) {
308 && page->backForward()->isActive()
/external/webkit/Source/WebKit/chromium/src/
H A DWebFrameImpl.cpp937 m_frame->page()->backForward()->setCurrentItem(currentItem.get());
1043 return WebHistoryItem(m_frame->page()->backForward()->currentItem());
/external/webkit/Source/WebKit/win/WebCoreSupport/
H A DWebFrameLoaderClient.cpp630 historyItem = page->backForward()->currentItem();
/external/webkit/Source/WebKit/mac/WebCoreSupport/
H A DWebFrameLoaderClient.mm977 historyItem = page->backForward()->currentItem();

Completed in 2749 milliseconds