Home
last modified time | relevance | path

Searched refs:backForwardList (Results 1 – 25 of 45) sorted by relevance

12

/external/webkit/Source/WebKit/gtk/webkit/
Dwebkitwebbackforwardlist.cpp58 WebCore::BackForwardListImpl* backForwardList; member
67 WebCore::BackForwardListImpl* backForwardList = core(list); in webkit_web_back_forward_list_dispose() local
73 WebCore::HistoryItemVector items = backForwardList->entries(); in webkit_web_back_forward_list_dispose()
118 …priv->backForwardList = static_cast<WebCore::BackForwardListImpl*>(core(webView)->backForwardList(… in webkit_web_back_forward_list_new_with_web_view()
119 priv->backForwardList->setEnabled(TRUE); in webkit_web_back_forward_list_new_with_web_view()
134 WebCore::BackForwardListImpl* backForwardList = core(webBackForwardList); in webkit_web_back_forward_list_go_forward() local
135 if (backForwardList->enabled()) in webkit_web_back_forward_list_go_forward()
136 backForwardList->goForward(); in webkit_web_back_forward_list_go_forward()
149 WebCore::BackForwardListImpl* backForwardList = core(webBackForwardList); in webkit_web_back_forward_list_go_back() local
150 if (backForwardList->enabled()) in webkit_web_back_forward_list_go_back()
[all …]
Dwebkitwebviewprivate.h61 GRefPtr<WebKitWebBackForwardList> backForwardList; member
Dwebkitwebview.cpp1347 priv->backForwardList.clear(); in webkit_web_view_dispose()
3526 priv->backForwardList = adoptGRef(webkit_web_back_forward_list_new_with_web_view(webView)); in webkit_web_view_init()
3753 static_cast<BackForwardListImpl*>(core(webView)->backForwardList())->setEnabled(flag); in webkit_web_view_set_maintains_back_forward_list()
3768 …if (!core(webView) || !static_cast<BackForwardListImpl*>(core(webView)->backForwardList())->enable… in webkit_web_view_get_back_forward_list()
3770 return webView->priv->backForwardList.get(); in webkit_web_view_get_back_forward_list()
3787 WebKitWebBackForwardList* backForwardList = webkit_web_view_get_back_forward_list(webView); in webkit_web_view_go_to_back_forward_item() local
3788 if (!webkit_web_back_forward_list_contains_item(backForwardList, item)) in webkit_web_view_go_to_back_forward_item()
3849 if (!core(webView) || !core(webView)->backForwardList()->backItem()) in webkit_web_view_can_go_back()
3890 if (!page->backForwardList()->forwardItem()) in webkit_web_view_can_go_forward()
/external/webkit/Source/WebKit/mac/History/
DWebBackForwardList.mm76 WebBackForwardList *kit(BackForwardListImpl* backForwardList)
78 if (!backForwardList)
81 if (WebBackForwardList *webBackForwardList = backForwardLists().get(backForwardList))
84 return [[[WebBackForwardList alloc] initWithBackForwardList:backForwardList] autorelease];
87 - (id)initWithBackForwardList:(PassRefPtr<BackForwardListImpl>)backForwardList
94 _private = reinterpret_cast<WebBackForwardListPrivate*>(backForwardList.releaseRef());
122 BackForwardListImpl* backForwardList = core(self);
123 ASSERT(backForwardList);
124 if (backForwardList) {
125 ASSERT(backForwardList->closed());
[all …]
DWebBackForwardListInternal.h40 - (id)initWithBackForwardList:(PassRefPtr<WebCore::BackForwardListImpl>)backForwardList;
/external/webkit/Source/WebKit/gtk/tests/
Dtestwebbackforwardlist.c29 WebKitWebBackForwardList* backForwardList; in test_webkit_web_history_item_lifetime() local
44 backForwardList = webkit_web_view_get_back_forward_list(webView); in test_webkit_web_history_item_lifetime()
45 g_assert_cmpint(G_OBJECT(backForwardList)->ref_count, ==, 1); in test_webkit_web_history_item_lifetime()
49 webkit_web_back_forward_list_add_item(backForwardList, item1); in test_webkit_web_history_item_lifetime()
53 webkit_web_back_forward_list_add_item(backForwardList, item2); in test_webkit_web_history_item_lifetime()
57 webkit_web_back_forward_list_add_item(backForwardList, item3); in test_webkit_web_history_item_lifetime()
61 webkit_web_back_forward_list_add_item(backForwardList, item4); in test_webkit_web_history_item_lifetime()
65 backItem = webkit_web_back_forward_list_get_back_item(backForwardList); in test_webkit_web_history_item_lifetime()
71 currentItem = webkit_web_back_forward_list_get_current_item(backForwardList); in test_webkit_web_history_item_lifetime()
77 webkit_web_back_forward_list_go_to_item(backForwardList, item2); in test_webkit_web_history_item_lifetime()
[all …]
/external/webkit/Source/WebKit/win/
DWebBackForwardList.cpp51 WebBackForwardList::WebBackForwardList(PassRefPtr<BackForwardListImpl> backForwardList) in WebBackForwardList() argument
53 , m_backForwardList(backForwardList) in WebBackForwardList()
73 …ackForwardList* WebBackForwardList::createInstance(PassRefPtr<BackForwardListImpl> backForwardList) in createInstance() argument
77 instance = backForwardListWrappers().get(backForwardList.get()); in createInstance()
80 instance = new WebBackForwardList(backForwardList); in createInstance()
DWebView.cpp2875 HRESULT STDMETHODCALLTYPE WebView::backForwardList( in backForwardList() function in WebView
2881 …ForwardList::createInstance(static_cast<WebCore::BackForwardListImpl*>(m_page->backForwardList())); in backForwardList()
3719 *result = !!(m_page->backForwardList()->backItem() && !m_page->defersLoading()); in canGoBack()
3734 *result = !!(m_page->backForwardList()->forwardItem() && !m_page->defersLoading()); in canGoForward()
5156 BackForwardList* backForwardList = m_page->backForwardList(); in loadBackForwardListFromOtherView() local
5157 ASSERT(!backForwardList->currentItem()); // destination list should be empty in loadBackForwardListFromOtherView()
5162 BackForwardList* otherBackForwardList = otherWebView->m_page->backForwardList(); in loadBackForwardListFromOtherView()
5179 backForwardList->addItem(newItem.release()); in loadBackForwardListFromOtherView()
/external/webkit/Tools/DumpRenderTree/win/
DLayoutTestControllerWin.cpp93 COMPtr<IWebBackForwardList> backForwardList; in clearBackForwardList() local
94 if (FAILED(webView->backForwardList(&backForwardList))) in clearBackForwardList()
98 if (FAILED(backForwardList->currentItem(&item))) in clearBackForwardList()
104 if (FAILED(backForwardList->capacity(&capacity))) in clearBackForwardList()
107 backForwardList->setCapacity(0); in clearBackForwardList()
108 backForwardList->setCapacity(capacity); in clearBackForwardList()
109 backForwardList->addItem(item.get()); in clearBackForwardList()
110 backForwardList->goToItem(item.get()); in clearBackForwardList()
1405 COMPtr<IWebBackForwardList> backForwardList; in apiTestGoToCurrentBackForwardItem() local
1406 if (FAILED(webView->backForwardList(&backForwardList))) in apiTestGoToCurrentBackForwardItem()
[all …]
DWorkQueueItemWin.cpp159 if (FAILED(webView->backForwardList(&bfList))) in invoke()
DDumpRenderTree.cpp629 if (FAILED(webView->backForwardList(&bfList))) in dumpBackForwardList()
1019 if (SUCCEEDED(webView->backForwardList(&bfList))) in runTest()
/external/webkit/Tools/DumpRenderTree/mac/
DLayoutTestControllerMac.mm202 WebBackForwardList *backForwardList = [[mainFrame webView] backForwardList];
203 WebHistoryItem *item = [[backForwardList currentItem] retain];
207 int capacity = [backForwardList capacity];
208 [backForwardList setCapacity:0];
209 [backForwardList setCapacity:capacity];
210 [backForwardList addItem:item];
211 [backForwardList goToItem:item];
959 [view goToBackForwardItem:[[view backForwardList] currentItem]];
DWorkQueueItemMac.mm93 WebBackForwardList *bfList = [[mainFrame webView] backForwardList];
/external/webkit/Source/WebKit/android/jni/
DWebHistory.cpp83 …wardListImpl* list = static_cast<WebCore::BackForwardListImpl*>(pFrame->page()->backForwardList()); in WebHistoryClose()
151 … static_cast<WebCore::BackForwardListImpl*>(page->backForwardList())->entries()[index].get(); in WebHistoryRestoreIndex()
186 pFrame->page()->backForwardList()->addItem(newItem); in WebHistoryInflate()
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
DWKBundlePage.cpp207 return toAPI(toImpl(pageRef)->backForwardList()); in WKBundlePageGetBackForwardList()
/external/webkit/Source/WebKit/mac/WebView/
DWebView.h313 - (WebBackForwardList *)backForwardList;
DWebView.mm1343 BackForwardList* backForwardList = _private->page->backForwardList();
1344 ASSERT(!backForwardList->currentItem()); // destination list should be empty
1346 BackForwardList* otherBackForwardList = otherView->_private->page->backForwardList();
1363 backForwardList->addItem(newItem.release());
3201 …static_cast<BackForwardListImpl*>([result page]->backForwardList())->setEnabled(useBackForwardList…
3225 … _private->page && static_cast<BackForwardListImpl*>(_private->page->backForwardList())->enabled();
3533 - (WebBackForwardList *)backForwardList
3537 … BackForwardListImpl* list = static_cast<BackForwardListImpl*>(_private->page->backForwardList());
3547 static_cast<BackForwardListImpl*>(_private->page->backForwardList())->setEnabled(flag);
4251 return !!_private->page->backForwardList()->backItem();
[all …]
/external/webkit/Source/WebCore/page/
DPage.h148 BackForwardList* backForwardList() const;
DPage.cpp290 BackForwardList* Page::backForwardList() const in backForwardList() function in WebCore::Page
/external/webkit/Source/WebKit2/UIProcess/API/C/
DWKPage.cpp140 return toAPI(toImpl(pageRef)->backForwardList()); in WKPageGetBackForwardList()
/external/webkit/Source/WebKit2/UIProcess/API/qt/
Dqwkpage.cpp100 history = QWKHistoryPrivate::createHistory(page->backForwardList()); in QWKPagePrivate()
/external/webkit/Source/WebKit/win/Interfaces/
DIWebView.idl326 @method backForwardList
328 - (WebBackForwardList *)backForwardList;
330 HRESULT backForwardList([retval, out] IWebBackForwardList** list);
/external/webkit/Source/WebKit2/WebProcess/WebPage/
DWebPage.h142 InjectedBundleBackForwardList* backForwardList();
/external/webkit/Source/WebKit/efl/ewk/
Dewk_view.cpp639 …story = ewk_history_new(static_cast<WebCore::BackForwardListImpl*>(priv->page->backForwardList())); in _ewk_view_priv_new()
1820 return static_cast<WebCore::BackForwardListImpl*>(priv->page->backForwardList())->enabled(); in ewk_view_history_enable_get()
1836 static_cast<WebCore::BackForwardListImpl*>(priv->page->backForwardList())->setEnabled(enable); in ewk_view_history_enable_set()
1860 if (!static_cast<WebCore::BackForwardListImpl*>(priv->page->backForwardList())->enabled()) { in ewk_view_history_get()
/external/webkit/Source/WebKit2/UIProcess/
DWebPageProxy.h174 WebBackForwardList* backForwardList() { return m_backForwardList.get(); } in backForwardList() function

12