Searched refs:historyItem (Results 1 - 22 of 22) sorted by relevance

/external/webkit/Source/WebKit/win/
H A DWebBackForwardList.cpp128 m_backForwardList->addItem(webHistoryItem->historyItem());
152 m_backForwardList->goToItem(webHistoryItem->historyItem());
162 HistoryItem* historyItem = m_backForwardList->backItem();
164 if (!historyItem)
167 *item = WebHistoryItem::createInstance(historyItem);
177 HistoryItem* historyItem = m_backForwardList->currentItem();
179 if (!historyItem)
182 *item = WebHistoryItem::createInstance(historyItem);
192 HistoryItem* historyItem = m_backForwardList->forwardItem();
194 if (!historyItem)
[all...]
H A DWebHistoryItem.cpp51 WebHistoryItem::WebHistoryItem(PassRefPtr<HistoryItem> historyItem) argument
53 , m_historyItem(historyItem)
78 WebHistoryItem* WebHistoryItem::createInstance(PassRefPtr<HistoryItem> historyItem) argument
82 instance = historyItemWrappers().get(historyItem.get());
85 instance = new WebHistoryItem(historyItem);
323 m_historyItem->mergeAutoCompleteHints(otherWebHistoryItem->historyItem());
640 HistoryItem* WebHistoryItem::historyItem() const function in class:WebHistoryItem
H A DWebHistoryItem.h110 WebCore::HistoryItem* historyItem() const;
H A DWebHistory.cpp86 writeHistoryItem(stream, webItem->historyItem());
741 item->historyItem()->setRedirectURLs(0);
H A DWebView.cpp2918 m_page->goToItem(webHistoryItem->historyItem(), FrameLoadTypeIndexedBackForward);
6604 void WebView::setGlobalHistoryItem(HistoryItem* historyItem)
6606 m_globalHistoryItem = historyItem;
/external/webkit/Source/WebKit/gtk/webkit/
H A Dwebkitwebbackforwardlist.cpp168 WebCore::HistoryItem* historyItem = core(webHistoryItem); local
170 g_return_val_if_fail(historyItem != NULL, FALSE);
174 return (backForwardList->enabled() ? backForwardList->containsItem(historyItem) : FALSE);
189 WebCore::HistoryItem* historyItem = core(webHistoryItem); local
192 if (backForwardList->enabled() && historyItem)
193 backForwardList->goToItem(historyItem);
272 WebCore::HistoryItem* historyItem = backForwardList->backItem();
274 return (historyItem ? kit(historyItem) : NULL);
295 WebCore::HistoryItem* historyItem
439 WebCore::HistoryItem* historyItem = core(webHistoryItem); local
[all...]
H A Dwebkitwebhistoryitem.cpp55 WebCore::HistoryItem* historyItem; member in struct:_WebKitWebHistoryItemPrivate
87 void webkit_history_item_add(WebKitWebHistoryItem* webHistoryItem, WebCore::HistoryItem* historyItem) argument
92 g_hash_table_insert(table, historyItem, webHistoryItem);
262 WebKitWebHistoryItem* webkit_web_history_item_new_with_core_item(PassRefPtr<WebCore::HistoryItem> historyItem) argument
264 return kit(historyItem);
281 priv->historyItem = item.release().releaseRef();
282 webkit_history_item_add(webHistoryItem, priv->historyItem);
304 priv->historyItem = item.release().releaseRef();
305 webkit_history_item_add(webHistoryItem, priv->historyItem);
455 priv->historyItem
512 kit(PassRefPtr<WebCore::HistoryItem> historyItem) argument
[all...]
/external/webkit/Source/WebCore/history/android/
H A DAndroidWebHistoryBridge.h50 HistoryItem* historyItem() const { return m_historyItem; } function in class:WebCore::AndroidWebHistoryBridge
/external/webkit/Source/WebCore/history/
H A DCachedFrame.cpp115 HistoryItem* historyItem = frame->loader()->history()->currentItem(); local
116 m_document->enqueuePopstateEvent(historyItem && historyItem->stateObject() ? historyItem->stateObject() : SerializedScriptValue::nullValue());
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DDumpRenderTreeSupportQt.h176 static QMap<QString, QWebHistoryItem> getChildHistoryItems(const QWebHistoryItem& historyItem);
177 static bool isTargetItem(const QWebHistoryItem& historyItem);
178 static QString historyItemTarget(const QWebHistoryItem& historyItem);
H A DDumpRenderTreeSupportQt.cpp837 bool DumpRenderTreeSupportQt::isTargetItem(const QWebHistoryItem& historyItem) argument
839 QWebHistoryItem it = historyItem;
845 QString DumpRenderTreeSupportQt::historyItemTarget(const QWebHistoryItem& historyItem) argument
847 QWebHistoryItem it = historyItem;
851 QMap<QString, QWebHistoryItem> DumpRenderTreeSupportQt::getChildHistoryItems(const QWebHistoryItem& historyItem) argument
853 QWebHistoryItem it = historyItem;
H A DFrameLoaderClientQt.cpp882 QWebHistoryItem historyItem(new QWebHistoryItemPrivate(item));
883 emit m_webFrame->page()->saveFrameStateRequested(m_webFrame, &historyItem);
/external/webkit/Source/WebKit2/WebProcess/Downloads/mac/
H A DDownloadMac.mm73 HistoryItem* historyItem = page->backForward()->itemAtIndex(-backIndex);
74 if (!historyItem)
77 originalURL = historyItem->originalURL();
/external/webkit/Source/WebKit/chromium/src/
H A DContextMenuClientImpl.cpp247 RefPtr<HistoryItem> historyItem = selectedFrame->loader()->history()->currentItem(); local
248 if (historyItem)
249 data.frameHistoryItem = WebHistoryItem(historyItem);
H A DWebFrameImpl.cpp926 RefPtr<HistoryItem> historyItem = PassRefPtr<HistoryItem>(item); local
927 ASSERT(historyItem.get());
940 m_inSameDocumentHistoryLoad = currentItem->shouldDoSameDocumentNavigationTo(historyItem.get());
941 m_frame->page()->goToItem(historyItem.get(),
/external/webkit/Tools/DumpRenderTree/chromium/
H A DTestShell.cpp428 WebHistoryItem historyItem = navigationController.entryAtIndex(index)->contentState(); local
429 if (historyItem.isNull()) {
430 historyItem.initialize();
431 historyItem.setURLString(navigationController.entryAtIndex(index)->URL().spec().utf16());
433 result.append(dumpHistoryItem(historyItem, 8, index == currentIndex));
H A DWebViewHost.cpp1377 const WebHistoryItem& historyItem = frame->currentHistoryItem(); local
1378 if (!historyItem.isNull())
1379 entry->setContentState(historyItem);
1398 const WebHistoryItem& historyItem = webView()->mainFrame()->previousHistoryItem(); local
1399 if (historyItem.isNull())
1402 entry->setContentState(historyItem);
/external/webkit/Source/WebKit/win/WebCoreSupport/
H A DWebFrameLoaderClient.cpp579 webHistoryItem->historyItem()->addRedirectURL(loader->clientRedirectDestinationForHistory());
594 webHistoryItem->historyItem()->addRedirectURL(loader->serverRedirectDestinationForHistory());
625 HistoryItem* historyItem = 0; local
630 historyItem = page->backForward()->currentItem();
633 webView->setGlobalHistoryItem(historyItem);
/external/webkit/Source/WebKit/mac/WebView/
H A DWebViewInternal.h117 - (void)_setGlobalHistoryItem:(WebCore::HistoryItem*)historyItem;
H A DWebView.mm2313 - (void)_setGlobalHistoryItem:(HistoryItem*)historyItem
2315 _private->_globalHistoryItem = historyItem;
/external/webkit/Source/WebKit/mac/WebCoreSupport/
H A DWebFrameLoaderClient.mm973 HistoryItem* historyItem = 0;
977 historyItem = page->backForward()->currentItem();
981 [webView _setGlobalHistoryItem:historyItem];
/external/webkit/Source/WebKit/android/jni/
H A DWebHistory.cpp314 item = webItem->historyItem();

Completed in 1500 milliseconds