HomeSort by relevance Sort by last modified time
    Searched refs:backForward (Results 1 - 19 of 19) sorted by null

  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundleBackForwardList.cpp 46 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/
WMLPrevElement.cpp 68 pageState->page()->backForward()->goBack();
WMLDocument.cpp 72 HistoryItem* item = page->backForward()->backItem();
WMLPageState.cpp 69 m_page->backForward()->client()->clearWMLPageHistory();
125 HistoryItem* previousItem = page->backForward()->backItem();
129 HistoryItem* currentItem = page->backForward()->currentItem();
WMLDoElement.cpp 94 pageState->page()->backForward()->goBack();
  /external/webkit/Source/WebCore/loader/
NavigationScheduler.cpp 189 frame->page()->backForward()->goBackOrForward(m_historySteps);
375 BackForwardController* backForward = m_frame->page()->backForward();
376 if (steps > backForward->forwardCount() || -steps > backForward->backCount()) {
HistoryController.cpp 255 RefPtr<HistoryItem> currentItem = page->backForward()->currentItem();
256 page->backForward()->setCurrentItem(targetItem);
759 LOG(BackForward, "WebCoreBackForward - Adding backforward item %p for frame %s", topItem.get(), m_frame->loader()->documentLoader()->url().string().ascii().data());
760 page->backForward()->addItem(topItem.release());
    [all...]
FrameLoader.cpp     [all...]
  /external/webkit/Source/WebCore/page/
History.cpp 61 return m_frame->page()->backForward()->count();
Page.cpp 223 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()->itemAtIndex(-backCount)
    [all...]
Settings.cpp 515 int first = -m_page->backForward()->backCount();
516 int last = m_page->backForward()->forwardCount();
518 pageCache()->remove(m_page->backForward()->itemAtIndex(i));
ContextMenuController.cpp 250 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))
    [all...]
Page.h 147 // DEPRECATED. Use backForward() instead of the following 6 functions.
191 BackForwardController* backForward() const { return m_backForwardController.get(); }
DOMWindow.cpp 931 if (!(page->openedByDOM() || page->backForward()->count() <= 1 || allowScriptsToCloseWindows))
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/Downloads/mac/
DownloadMac.mm 69 int backCount = page->backForward()->backCount();
73 HistoryItem* historyItem = page->backForward()->itemAtIndex(-backIndex);
  /external/webkit/Source/WebCore/history/
PageCache.cpp 195 if (!page->backForward()->isActive()) {
308 && page->backForward()->isActive()
  /external/webkit/Source/WebKit/chromium/src/
WebFrameImpl.cpp 937 m_frame->page()->backForward()->setCurrentItem(currentItem.get());
    [all...]
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebFrameLoaderClient.cpp 630 historyItem = page->backForward()->currentItem();
    [all...]
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebFrameLoaderClient.mm     [all...]

Completed in 336 milliseconds