HomeSort by relevance Sort by last modified time
    Searched refs:HistoryItem (Results 1 - 25 of 83) sorted by null

1 2 3 4

  /external/webkit/WebKit/chromium/src/
BackForwardListClientImpl.h 46 void setCurrentHistoryItem(WebCore::HistoryItem* item);
47 WebCore::HistoryItem* previousHistoryItem() const;
51 virtual void addItem(PassRefPtr<WebCore::HistoryItem>);
52 virtual void goToItem(WebCore::HistoryItem*);
53 virtual WebCore::HistoryItem* currentItem();
54 virtual WebCore::HistoryItem* itemAtIndex(int index);
61 RefPtr<WebCore::HistoryItem> m_previousItem;
62 RefPtr<WebCore::HistoryItem> m_currentItem;
66 RefPtr<WebCore::HistoryItem> m_pendingHistoryItem;
BackForwardListClientImpl.cpp 34 #include "HistoryItem.h"
53 void BackForwardListClientImpl::setCurrentHistoryItem(HistoryItem* item)
59 HistoryItem* BackForwardListClientImpl::previousHistoryItem() const
64 void BackForwardListClientImpl::addItem(PassRefPtr<HistoryItem> item)
69 // If WebCore adds a new HistoryItem, it means this is a new navigation (ie,
77 void BackForwardListClientImpl::goToItem(HistoryItem* item)
86 HistoryItem* BackForwardListClientImpl::currentItem()
91 HistoryItem* BackForwardListClientImpl::itemAtIndex(int index)
99 // to navigate to this HistoryItem.
109 HistoryItem::create(url_string, String(), 0.0)
    [all...]
  /external/webkit/WebCore/history/
BackForwardList.h 39 class HistoryItem;
44 typedef Vector<RefPtr<HistoryItem> > HistoryItemVector;
45 typedef HashSet<RefPtr<HistoryItem> > HistoryItemHashSet;
53 virtual void addItem(PassRefPtr<HistoryItem>) = 0;
54 virtual void goToItem(HistoryItem*) = 0;
55 virtual HistoryItem* currentItem() = 0;
56 virtual HistoryItem* itemAtIndex(int) = 0;
75 void addItem(PassRefPtr<HistoryItem>);
78 void goToItem(HistoryItem*);
80 HistoryItem* backItem()
    [all...]
PageCache.h 29 #include "HistoryItem.h"
38 class HistoryItem;
47 void add(PassRefPtr<HistoryItem>, PassRefPtr<CachedPage>); // Prunes if capacity() is exceeded.
48 void remove(HistoryItem*);
49 CachedPage* get(HistoryItem* item) { return item ? item->m_cachedPage.get() : 0; }
63 void addToLRUList(HistoryItem*); // Adds to the head of the list.
64 void removeFromLRUList(HistoryItem*);
75 HistoryItem* m_head;
76 HistoryItem* m_tail;
HistoryItem.cpp 27 #include "HistoryItem.h"
48 static void defaultNotifyHistoryItemChanged(HistoryItem*)
52 void (*notifyHistoryItemChanged)(HistoryItem*) = defaultNotifyHistoryItemChanged;
54 HistoryItem::HistoryItem()
64 HistoryItem::HistoryItem(const String& urlString, const String& title, double time)
78 HistoryItem::HistoryItem(const String& urlString, const String& title, const String& alternateTitle, double time)
93 HistoryItem::HistoryItem(const KURL& url, const String& target, const String& parent, const String& title
    [all...]
BackForwardListChromium.cpp 31 #include "HistoryItem.h"
53 void BackForwardList::addItem(PassRefPtr<HistoryItem> prpItem)
62 void BackForwardList::goToItem(HistoryItem* item)
67 HistoryItem* BackForwardList::backItem()
73 HistoryItem* BackForwardList::forwardItem()
79 HistoryItem* BackForwardList::currentItem()
119 HistoryItem* BackForwardList::itemAtIndex(int index)
124 void BackForwardList::pushStateItem(PassRefPtr<HistoryItem> newItem)
126 RefPtr<HistoryItem> current = m_client->currentItem();
HistoryItem.h 55 class HistoryItem;
60 typedef Vector<RefPtr<HistoryItem> > HistoryItemVector;
62 extern void (*notifyHistoryItemChanged)(HistoryItem*);
69 class HistoryItem : public RefCounted<HistoryItem> {
73 static PassRefPtr<HistoryItem> create() { return adoptRef(new HistoryItem); }
74 static PassRefPtr<HistoryItem> create(const String& urlString, const String& title, double lastVisited)
76 return adoptRef(new HistoryItem(urlString, title, lastVisited));
78 static PassRefPtr<HistoryItem> create(const String& urlString, const String& title, const String& alternateTitle, double lastVis (…)
    [all...]
BackForwardList.cpp 33 #include "HistoryItem.h"
60 void BackForwardList::addItem(PassRefPtr<HistoryItem> prpItem)
70 RefPtr<HistoryItem> item = m_entries.last();
80 RefPtr<HistoryItem> item = m_entries[0];
112 void BackForwardList::goToItem(HistoryItem* item)
127 HistoryItem* BackForwardList::backItem()
134 HistoryItem* BackForwardList::currentItem()
141 HistoryItem* BackForwardList::forwardItem()
182 RefPtr<HistoryItem> item = m_entries.last();
222 HistoryItem* BackForwardList::itemAtIndex(int index
    [all...]
PageCache.cpp 32 #include "HistoryItem.h"
69 for (HistoryItem* current = m_head; current; current = current->m_next) {
83 void PageCache::add(PassRefPtr<HistoryItem> prpItem, PassRefPtr<CachedPage> cachedPage)
88 HistoryItem* item = prpItem.releaseRef(); // Balanced in remove().
101 void PageCache::remove(HistoryItem* item)
122 void PageCache::addToLRUList(HistoryItem* item)
138 void PageCache::removeFromLRUList(HistoryItem* item)
  /external/webkit/WebCore/loader/
HistoryController.h 41 class HistoryItem;
49 void saveScrollPositionAndViewStateToItem(HistoryItem*);
60 void goToItem(HistoryItem*, FrameLoadType);
61 bool urlsMatchItem(HistoryItem*) const;
72 HistoryItem* currentItem() const { return m_currentItem.get(); }
73 void setCurrentItem(HistoryItem*);
76 HistoryItem* provisionalItem() const { return m_provisionalItem.get(); }
77 void setProvisionalItem(HistoryItem*);
83 PassRefPtr<HistoryItem> createItem(bool useOriginal);
84 PassRefPtr<HistoryItem> createItemTree(Frame* targetFrame, bool clipAtTarget)
    [all...]
HistoryController.cpp 43 #include "HistoryItem.h"
61 void HistoryController::saveScrollPositionAndViewStateToItem(HistoryItem* item)
133 HistoryItem* item = m_previousItem ? m_previousItem.get() : m_currentItem.get();
160 HistoryItem* itemToRestore = 0;
205 void HistoryController::goToItem(HistoryItem* targetItem, FrameLoadType type)
223 HistoryItem* currentItem = bfList->currentItem();
231 bool HistoryController::urlsMatchItem(HistoryItem* item) const
433 void HistoryController::setCurrentItem(HistoryItem* item)
444 void HistoryController::setProvisionalItem(HistoryItem* item)
449 PassRefPtr<HistoryItem> HistoryController::createItem(bool useOriginal
    [all...]
  /external/webkit/WebCore/history/android/
HistoryItemAndroid.cpp 27 #include "HistoryItem.h"
33 AndroidWebHistoryBridge* HistoryItem::bridge() const
40 void HistoryItem::setBridge(AndroidWebHistoryBridge* bridge)
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/WebCore/history/mac/
HistoryItemMac.mm 27 #include "HistoryItem.h"
33 id HistoryItem::viewState() const
38 void HistoryItem::setViewState(id statePList)
45 id HistoryItem::getTransientProperty(const String& key) const
52 void HistoryItem::setTransientProperty(const String& key, id value)
  /external/webkit/WebKit/android/jni/
WebHistory.h 41 static jbyteArray Flatten(JNIEnv*, WTF::Vector<char>&, WebCore::HistoryItem*);
42 static void AddItem(const AutoJObject&, WebCore::HistoryItem*);
56 WebHistoryItem(JNIEnv*, jobject, WebCore::HistoryItem*);
58 void updateHistoryItem(WebCore::HistoryItem* item);
  /external/webkit/WebKit/mac/History/
WebHistoryItemInternal.h 34 class HistoryItem;
37 WebCore::HistoryItem* core(WebHistoryItem *item);
38 WebHistoryItem *kit(WebCore::HistoryItem* item);
40 extern void WKNotifyHistoryItemChanged(WebCore::HistoryItem*);
50 - (id)initWithWebCoreHistoryItem:(PassRefPtr<WebCore::HistoryItem>)item;
  /external/webkit/WebCore/history/cf/
HistoryPropertyList.h 35 class HistoryItem;
44 void writeHistoryItem(BinaryPropertyListObjectStream&, HistoryItem*);
  /external/webkit/WebKit/qt/Api/
qwebhistory_p.h 24 #include "HistoryItem.h"
36 QWebHistoryItemPrivate(WebCore::HistoryItem* i)
48 WebCore::HistoryItem* item;
  /external/webkit/WebKit/chromium/public/
WebHistoryItem.h 37 namespace WebCore { class HistoryItem; }
122 WebHistoryItem(const WTF::PassRefPtr<WebCore::HistoryItem>&);
123 WebHistoryItem& operator=(const WTF::PassRefPtr<WebCore::HistoryItem>&);
124 operator WTF::PassRefPtr<WebCore::HistoryItem>() const;
  /packages/apps/Browser/src/com/android/browser/
HistoryItem.java 31 /* package */ class HistoryItem extends BookmarkItem {
36 * Create a new HistoryItem.
37 * @param context Context for this HistoryItem.
39 /* package */ HistoryItem(Context context) {
59 /* package */ void copyTo(HistoryItem item) {
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...]
  /external/webkit/WebKit/gtk/webkit/
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.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;
  /external/webkit/WebKit/haiku/WebCoreSupport/
FrameLoaderClientHaiku.h 136 virtual void saveViewStateToItem(HistoryItem*);
154 virtual bool shouldGoToHistoryItem(HistoryItem*) const;
155 virtual void dispatchDidAddBackForwardItem(HistoryItem*) const;
156 virtual void dispatchDidRemoveBackForwardItem(HistoryItem*) const;
158 virtual void saveScrollPositionAndViewStateToItem(HistoryItem*);
  /external/webkit/WebKit/wx/WebKitSupport/
FrameLoaderClientWx.h 136 virtual void saveViewStateToItem(HistoryItem*);
154 virtual bool shouldGoToHistoryItem(HistoryItem*) const;
155 virtual void dispatchDidAddBackForwardItem(HistoryItem*) const;
156 virtual void dispatchDidRemoveBackForwardItem(HistoryItem*) const;
158 virtual void saveScrollPositionAndViewStateToItem(HistoryItem*);

Completed in 464 milliseconds

1 2 3 4