diff options
Diffstat (limited to 'webkit/port/history/HistoryItem.h')
-rw-r--r-- | webkit/port/history/HistoryItem.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/webkit/port/history/HistoryItem.h b/webkit/port/history/HistoryItem.h index a5c1707..7d86f0c 100644 --- a/webkit/port/history/HistoryItem.h +++ b/webkit/port/history/HistoryItem.h @@ -102,6 +102,7 @@ public: String rssFeedReferrer() const; int visitCount() const; + bool lastVisitWasFailure() const { return m_lastVisitWasFailure; } void mergeAutoCompleteHints(HistoryItem* otherItem); @@ -124,6 +125,7 @@ public: void setRSSFeedReferrer(const String&); void setVisitCount(int); + void setLastVisitWasFailure(bool wasFailure) { m_lastVisitWasFailure = wasFailure; } void addChildItem(PassRefPtr<HistoryItem>); HistoryItem* childItemWithName(const String&) const; @@ -175,6 +177,7 @@ private: HistoryItemVector m_subItems; + bool m_lastVisitWasFailure; bool m_isInPageCache; bool m_isTargetItem; int m_visitCount; |