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

  /external/webkit/Source/WebKit/win/
WebBackForwardList.cpp 36 #include <WebCore/HistoryItem.h>
128 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)
    [all...]
WebHistoryItem.cpp 35 #include <WebCore/HistoryItem.h>
45 static HashMap<HistoryItem*, WebHistoryItem*>& historyItemWrappers()
47 static HashMap<HistoryItem*, WebHistoryItem*> staticHistoryItemWrappers;
51 WebHistoryItem::WebHistoryItem(PassRefPtr<HistoryItem> historyItem)
53 , m_historyItem(historyItem)
73 WebHistoryItem* instance = new WebHistoryItem(HistoryItem::create());
78 WebHistoryItem* WebHistoryItem::createInstance(PassRefPtr<HistoryItem> historyItem)
82 instance = historyItemWrappers().get(historyItem.get())
    [all...]
WebHistoryItem.h 37 class HistoryItem;
46 static WebHistoryItem* createInstance(PassRefPtr<WebCore::HistoryItem>);
48 WebHistoryItem(PassRefPtr<WebCore::HistoryItem>);
110 WebCore::HistoryItem* historyItem() const;
115 RefPtr<WebCore::HistoryItem> m_historyItem;
WebHistory.cpp 39 #include <WebCore/HistoryItem.h>
86 writeHistoryItem(stream, webItem->historyItem());
741 item->historyItem()->setRedirectURLs(0);
    [all...]
WebView.cpp 95 #include <WebCore/HistoryItem.h>
    [all...]
  /external/webkit/Source/WebKit/gtk/webkit/
webkitwebbackforwardlist.cpp 25 #include "HistoryItem.h"
168 WebCore::HistoryItem* historyItem = core(webHistoryItem);
170 g_return_val_if_fail(historyItem != NULL, FALSE);
174 return (backForwardList->enabled() ? backForwardList->containsItem(historyItem) : FALSE);
189 WebCore::HistoryItem* historyItem = core(webHistoryItem);
192 if (backForwardList->enabled() && historyItem)
193 backForwardList->goToItem(historyItem);
272 WebCore::HistoryItem* historyItem = backForwardList->backItem()
    [all...]
webkitwebhistoryitem.cpp 24 #include "HistoryItem.h"
55 WebCore::HistoryItem* historyItem;
87 void webkit_history_item_add(WebKitWebHistoryItem* webHistoryItem, WebCore::HistoryItem* historyItem)
92 g_hash_table_insert(table, historyItem, webHistoryItem);
101 WebCore::HistoryItem* item = core(webHistoryItem);
262 WebKitWebHistoryItem* webkit_web_history_item_new_with_core_item(PassRefPtr<WebCore::HistoryItem> historyItem)
264 return kit(historyItem);
    [all...]
  /external/webkit/Source/WebCore/history/android/
AndroidWebHistoryBridge.h 33 class HistoryItem;
37 AndroidWebHistoryBridge(HistoryItem* item)
43 virtual void updateHistoryItem(HistoryItem* item) = 0;
50 HistoryItem* historyItem() const { return m_historyItem; }
57 HistoryItem* m_historyItem;
  /external/webkit/Source/WebCore/history/
CachedFrame.cpp 37 #include "HistoryItem.h"
115 HistoryItem* historyItem = frame->loader()->history()->currentItem();
116 m_document->enqueuePopstateEvent(historyItem && historyItem->stateObject() ? historyItem->stateObject() : SerializedScriptValue::nullValue());
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
DumpRenderTreeSupportQt.h 176 static QMap<QString, QWebHistoryItem> getChildHistoryItems(const QWebHistoryItem& historyItem);
177 static bool isTargetItem(const QWebHistoryItem& historyItem);
178 static QString historyItemTarget(const QWebHistoryItem& historyItem);
DumpRenderTreeSupportQt.cpp 54 #include "HistoryItem.h"
837 bool DumpRenderTreeSupportQt::isTargetItem(const QWebHistoryItem& historyItem)
839 QWebHistoryItem it = historyItem;
845 QString DumpRenderTreeSupportQt::historyItemTarget(const QWebHistoryItem& historyItem)
847 QWebHistoryItem it = historyItem;
851 QMap<QString, QWebHistoryItem> DumpRenderTreeSupportQt::getChildHistoryItems(const QWebHistoryItem& historyItem)
853 QWebHistoryItem it = historyItem;
854 HistoryItem* item = QWebHistoryItemPrivate::core(&it);
    [all...]
FrameLoaderClientQt.cpp 47 #include "HistoryItem.h"
816 // WebCore::HistoryItem::addRedirectURL() with the contents of
842 bool FrameLoaderClientQt::shouldGoToHistoryItem(WebCore::HistoryItem*) const
847 bool FrameLoaderClientQt::shouldStopLoadingForHistoryItem(WebCore::HistoryItem*) const
852 void FrameLoaderClientQt::dispatchDidAddBackForwardItem(WebCore::HistoryItem*) const
856 void FrameLoaderClientQt::dispatchDidRemoveBackForwardItem(WebCore::HistoryItem*) const
880 void FrameLoaderClientQt::saveViewStateToItem(WebCore::HistoryItem* item)
882 QWebHistoryItem historyItem(new QWebHistoryItemPrivate(item));
883 emit m_webFrame->page()->saveFrameStateRequested(m_webFrame, &historyItem);
    [all...]
  /packages/apps/Browser/src/com/android/browser/
BrowserHistoryPage.java 78 HistoryItem mContextHeader;
267 mCallback.openUrl(((HistoryItem) view).getUrl());
274 mCallback.openUrl(((HistoryItem) view).getUrl());
346 if (!(targetView instanceof HistoryItem)) {
349 HistoryItem historyItem = (HistoryItem) targetView;
358 mContextHeader = new HistoryItem(parent, false);
363 historyItem.copyTo(mContextHeader);
371 if (historyItem.isBookmark())
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/Downloads/mac/
DownloadMac.mm 31 #import <WebCore/HistoryItem.h>
73 HistoryItem* historyItem = page->backForward()->itemAtIndex(-backIndex);
74 if (!historyItem)
77 originalURL = historyItem->originalURL();
  /external/webkit/Source/WebKit/chromium/src/
ContextMenuClientImpl.cpp 44 #include "HistoryItem.h"
247 RefPtr<HistoryItem> historyItem = selectedFrame->loader()->history()->currentItem();
248 if (historyItem)
249 data.frameHistoryItem = WebHistoryItem(historyItem);
WebFrameImpl.cpp 101 #include "HistoryItem.h"
926 RefPtr<HistoryItem> historyItem = PassRefPtr<HistoryItem>(item);
927 ASSERT(historyItem.get());
932 RefPtr<HistoryItem> currentItem = m_frame->loader()->history()->currentItem();
934 currentItem = HistoryItem::create();
940 m_inSameDocumentHistoryLoad = currentItem->shouldDoSameDocumentNavigationTo(historyItem.get());
941 m_frame->page()->goToItem(historyItem.get(),
    [all...]
  /external/webkit/Tools/DumpRenderTree/chromium/
TestShell.cpp 428 WebHistoryItem historyItem = navigationController.entryAtIndex(index)->contentState();
429 if (historyItem.isNull()) {
430 historyItem.initialize();
431 historyItem.setURLString(navigationController.entryAtIndex(index)->URL().spec().utf16());
433 result.append(dumpHistoryItem(historyItem, 8, index == currentIndex));
WebViewHost.cpp     [all...]
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebFrameLoaderClient.cpp 64 #include <WebCore/HistoryItem.h>
579 webHistoryItem->historyItem()->addRedirectURL(loader->clientRedirectDestinationForHistory());
594 webHistoryItem->historyItem()->addRedirectURL(loader->serverRedirectDestinationForHistory());
601 bool WebFrameLoaderClient::shouldGoToHistoryItem(HistoryItem*) const
606 bool WebFrameLoaderClient::shouldStopLoadingForHistoryItem(HistoryItem*) const
611 void WebFrameLoaderClient::dispatchDidAddBackForwardItem(HistoryItem*) const
615 void WebFrameLoaderClient::dispatchDidRemoveBackForwardItem(HistoryItem*) const
625 HistoryItem* historyItem = 0;
630 historyItem = page->backForward()->currentItem()
    [all...]
  /external/webkit/Source/WebKit/mac/WebView/
WebViewInternal.h 44 class HistoryItem;
117 - (void)_setGlobalHistoryItem:(WebCore::HistoryItem*)historyItem;
WebView.mm 133 #import <WebCore/HistoryItem.h>
    [all...]
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebFrameLoaderClient.mm 101 #import <WebCore/HistoryItem.h>
    [all...]
  /external/webkit/Source/WebKit/android/jni/
WebHistory.cpp 40 #include "HistoryItem.h"
59 static void writeItem(WTF::Vector<char>& vector, WebCore::HistoryItem* item);
60 static void writeChildrenRecursive(WTF::Vector<char>& vector, WebCore::HistoryItem* parent);
61 static bool readItemRecursive(WebCore::HistoryItem* child, const char** pData, int length);
84 RefPtr<WebCore::HistoryItem> current = list->currentItem();
104 * or else a HistoryItem might have a deleted parent.
109 * Unfortunately, a HistoryItem can only search its immediately
119 RefPtr<WebCore::HistoryItem> parent = current;
123 WebCore::HistoryItem* item = parent->childItemWithTarget(child->tree()->name());
150 WebCore::HistoryItem* currentItem
    [all...]

Completed in 818 milliseconds