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

  /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;
  /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...]
  /external/webkit/WebKit/win/
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...]
  /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/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...]

Completed in 478 milliseconds