summaryrefslogtreecommitdiffstats
path: root/WebCore/history/HistoryItem.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/history/HistoryItem.h')
-rw-r--r--WebCore/history/HistoryItem.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/WebCore/history/HistoryItem.h b/WebCore/history/HistoryItem.h
index b11a92e..ef9ac23 100644
--- a/WebCore/history/HistoryItem.h
+++ b/WebCore/history/HistoryItem.h
@@ -161,8 +161,8 @@ public:
bool hasChildren() const;
void clearChildren();
- bool hasSameDocuments(HistoryItem* otherItem);
- bool hasSameFrames(HistoryItem* otherItem);
+ bool shouldDoSameDocumentNavigationTo(HistoryItem* otherItem) const;
+ bool hasSameFrames(HistoryItem* otherItem) const;
// This should not be called directly for HistoryItems that are already included
// in GlobalHistory. The WebKit api for this is to use -[WebHistory setLastVisitedTimeInterval:forItem:] instead.
@@ -218,6 +218,8 @@ private:
void padDailyCountsForNewVisit(double time);
void collapseDailyVisitsToWeekly();
void recordVisitAtTime(double, VisitCountBehavior = IncreaseVisitCount);
+
+ bool hasSameDocumentTree(HistoryItem* otherItem) const;
HistoryItem* findTargetItem();