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

  /external/webkit/WebKit/gtk/webkit/
webkitwebbackforwardlist.cpp 31 #include "HistoryItem.h"
165 WebCore::HistoryItem* historyItem = core(webHistoryItem);
167 g_return_val_if_fail(historyItem != NULL, FALSE);
171 return (backForwardList->enabled() ? backForwardList->containsItem(historyItem) : FALSE);
186 WebCore::HistoryItem* historyItem = core(webHistoryItem);
189 if (backForwardList->enabled() && historyItem)
190 backForwardList->goToItem(historyItem);
269 WebCore::HistoryItem* historyItem = backForwardList->backItem()
    [all...]
webkitwebhistoryitem.cpp 30 #include "HistoryItem.h"
55 WebCore::HistoryItem* historyItem;
89 void webkit_history_item_add(WebKitWebHistoryItem* webHistoryItem, WebCore::HistoryItem* historyItem)
94 g_hash_table_insert(table, historyItem, webHistoryItem);
103 WebCore::HistoryItem* item = core(webHistoryItem);
264 WebKitWebHistoryItem* webkit_web_history_item_new_with_core_item(PassRefPtr<WebCore::HistoryItem> historyItem)
266 return kit(historyItem);
    [all...]
webkitprivate.h 52 #include "HistoryItem.h"
83 WebCore::HistoryItem* core(WebKitWebHistoryItem*);
84 WebKitWebHistoryItem* kit(PassRefPtr<WebCore::HistoryItem>);
189 webkit_web_history_item_new_with_core_item(PassRefPtr<WebCore::HistoryItem> historyItem);
  /external/webkit/WebKit/win/
WebBackForwardList.cpp 36 #include <WebCore/HistoryItem.h>
126 m_backForwardList->addItem(webHistoryItem->historyItem());
150 m_backForwardList->goToItem(webHistoryItem->historyItem());
160 HistoryItem* historyItem = m_backForwardList->backItem();
162 if (!historyItem)
165 *item = WebHistoryItem::createInstance(historyItem);
175 HistoryItem* historyItem = m_backForwardList->currentItem();
177 if (!historyItem)
    [all...]
WebHistoryItem.cpp 38 #include <WebCore/HistoryItem.h>
49 static HashMap<HistoryItem*, WebHistoryItem*>& historyItemWrappers()
51 static HashMap<HistoryItem*, WebHistoryItem*> staticHistoryItemWrappers;
55 WebHistoryItem::WebHistoryItem(PassRefPtr<HistoryItem> historyItem)
57 , m_historyItem(historyItem)
77 WebHistoryItem* instance = new WebHistoryItem(HistoryItem::create());
82 WebHistoryItem* WebHistoryItem::createInstance(PassRefPtr<HistoryItem> historyItem)
86 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 40 #include <WebCore/HistoryItem.h>
88 writeHistoryItem(stream, webItem->historyItem());
743 item->historyItem()->setRedirectURLs(0);
    [all...]
WebView.cpp 94 #include <WebCore/HistoryItem.h>
    [all...]
  /external/webkit/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;
  /packages/apps/Browser/src/com/android/browser/
BrowserHistoryPage.java 55 private HistoryItem mContextHeader;
199 if (!(i.targetView instanceof HistoryItem)) {
207 HistoryItem historyItem = (HistoryItem) i.targetView;
211 mContextHeader = new HistoryItem(this);
215 historyItem.copyTo(mContextHeader);
223 if (historyItem.isBookmark()) {
241 HistoryItem historyItem = (HistoryItem) i.targetView
    [all...]
BrowserBookmarksPage.java 152 HistoryItem historyItem = ((HistoryItem) i.targetView);
153 isBookmark = historyItem.isBookmark();
154 name = historyItem.getName();
155 url = historyItem.getUrl();
198 && ((HistoryItem) i.targetView).isBookmark())
  /external/webkit/WebKit/qt/WebCoreSupport/
FrameLoaderClientQt.cpp 49 #include "HistoryItem.h"
656 bool FrameLoaderClientQt::shouldGoToHistoryItem(WebCore::HistoryItem *) const
661 void FrameLoaderClientQt::dispatchDidAddBackForwardItem(WebCore::HistoryItem*) const
665 void FrameLoaderClientQt::dispatchDidRemoveBackForwardItem(WebCore::HistoryItem*) const
689 void FrameLoaderClientQt::saveViewStateToItem(WebCore::HistoryItem* item)
691 QWebHistoryItem historyItem(new QWebHistoryItemPrivate(item));
692 emit m_webFrame->page()->saveFrameStateRequested(m_webFrame, &historyItem);
    [all...]
  /external/webkit/WebKit/win/WebCoreSupport/
WebFrameLoaderClient.cpp 63 #include <WebCore/HistoryItem.h>
581 webHistoryItem->historyItem()->addRedirectURL(loader->clientRedirectDestinationForHistory());
596 webHistoryItem->historyItem()->addRedirectURL(loader->serverRedirectDestinationForHistory());
603 bool WebFrameLoaderClient::shouldGoToHistoryItem(HistoryItem*) const
608 void WebFrameLoaderClient::dispatchDidAddBackForwardItem(HistoryItem*) const
612 void WebFrameLoaderClient::dispatchDidRemoveBackForwardItem(HistoryItem*) const
    [all...]
  /external/webkit/WebKit/chromium/src/
WebFrameImpl.cpp 92 #include "HistoryItem.h"
740 RefPtr<HistoryItem> historyItem = PassRefPtr<HistoryItem>(item);
741 ASSERT(historyItem.get());
748 RefPtr<HistoryItem> currentItem = m_frame->loader()->history()->currentItem();
750 currentItem = HistoryItem::create();
757 historyItem.get(), FrameLoadTypeIndexedBackForward);
    [all...]
  /external/webkit/WebKit/android/jni/
WebHistory.cpp 38 #include "HistoryItem.h"
56 static void write_item(WTF::Vector<char>& v, WebCore::HistoryItem* item);
57 static void write_children_recursive(WTF::Vector<char>& v, WebCore::HistoryItem* parent);
58 static bool read_item_recursive(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 488 milliseconds