HomeSort by relevance Sort by last modified time
    Searched defs:goToItem (Results 1 - 9 of 9) sorted by null

  /external/webkit/Source/WebKit/chromium/src/
BackForwardListChromium.cpp 71 void BackForwardListChromium::goToItem(HistoryItem* item)
  /external/webkit/Source/WebKit2/UIProcess/
WebBackForwardList.cpp 100 void WebBackForwardList::goToItem(WebBackForwardListItem* item)
  /external/webkit/Source/WebCore/history/
BackForwardListImpl.cpp 116 void BackForwardListImpl::goToItem(HistoryItem* item)
  /external/webkit/Source/WebKit/qt/tests/qwebhistory/
tst_qwebhistory.cpp 54 void goToItem();
168 * Check QWebHistory::goToItem() method
170 void tst_QWebHistory::goToItem()
178 hist->goToItem(current);
  /external/webkit/Source/WebKit/win/
WebBackForwardList.cpp 144 HRESULT STDMETHODCALLTYPE WebBackForwardList::goToItem(
152 m_backForwardList->goToItem(webHistoryItem->historyItem());
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebBackForwardListProxy.cpp 162 void WebBackForwardListProxy::goToItem(HistoryItem* item)
  /external/webkit/Source/WebKit/qt/Api/
qwebhistory.cpp 226 item by passing it to goToItem().
280 lst->goToItem(current.get()); //and set it as current again
365 \sa forward(), goToItem()
371 page->goToItem(d->lst->backItem(), WebCore::FrameLoadTypeIndexedBackForward);
379 \sa back(), goToItem()
385 page->goToItem(d->lst->forwardItem(), WebCore::FrameLoadTypeIndexedBackForward);
394 void QWebHistory::goToItem(const QWebHistoryItem &item)
397 page->goToItem(item.d->item, WebCore::FrameLoadTypeIndexedBackForward);
546 history.goToItem(history.itemAt(currentIndex));
  /external/webkit/Source/WebCore/loader/
HistoryController.cpp 238 void HistoryController::goToItem(HistoryItem* targetItem, FrameLoadType type)
    [all...]
  /external/webkit/Source/WebCore/page/
Page.cpp 300 goToItem(item, FrameLoadTypeBack);
311 goToItem(item, FrameLoadTypeForward);
348 goToItem(item, FrameLoadTypeIndexedBackForward);
351 void Page::goToItem(HistoryItem* item, FrameLoadType type)
357 // being deref()-ed. Make sure we can still use it with HistoryController::goToItem later.
363 m_mainFrame->loader()->history()->goToItem(item, type);

Completed in 215 milliseconds