Home
last modified time | relevance | path

Searched refs:m_historyItem (Results 1 – 3 of 3) sorted by relevance

/external/webkit/Source/WebKit/win/
DWebHistoryItem.cpp53 , m_historyItem(historyItem) in WebHistoryItem()
55 ASSERT(!historyItemWrappers().contains(m_historyItem.get())); in WebHistoryItem()
56 historyItemWrappers().set(m_historyItem.get(), this); in WebHistoryItem()
64 ASSERT(historyItemWrappers().contains(m_historyItem.get())); in ~WebHistoryItem()
65 historyItemWrappers().remove(m_historyItem.get()); in ~WebHistoryItem()
182 historyItemWrappers().remove(m_historyItem.get()); in initFromDictionaryRepresentation()
183 m_historyItem = HistoryItem::create(urlStringRef, titleRef, lastVisitedTime); in initFromDictionaryRepresentation()
184 historyItemWrappers().set(m_historyItem.get(), this); in initFromDictionaryRepresentation()
186 m_historyItem->setVisitCount(visitedCount); in initFromDictionaryRepresentation()
188 m_historyItem->setLastVisitWasFailure(true); in initFromDictionaryRepresentation()
[all …]
DWebHistoryItem.h115 RefPtr<WebCore::HistoryItem> m_historyItem; variable
/external/webkit/Source/WebCore/history/android/
DAndroidWebHistoryBridge.h41 , m_historyItem(item) {} in AndroidWebHistoryBridge()
49 void detachHistoryItem() { m_historyItem = 0; } in detachHistoryItem()
50 HistoryItem* historyItem() const { return m_historyItem; } in historyItem()
57 HistoryItem* m_historyItem; variable