Searched defs:historyItem (Results 1 - 11 of 11) sorted by relevance

/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/WebCore/history/android/
H A DAndroidWebHistoryBridge.h50 HistoryItem* historyItem() const { return m_historyItem; } function in class:WebCore::AndroidWebHistoryBridge
/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/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/WebKit/win/
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
/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/qt/WebCoreSupport/
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;

Completed in 3128 milliseconds