Index: Source/core/page/HistoryController.h |
diff --git a/Source/core/page/HistoryController.h b/Source/core/page/HistoryController.h |
index fc8188381d59dad8363d81c6d485f8cdcb417b6c..f93dce185f1b8c599611385ea5ed91480780abe8 100644 |
--- a/Source/core/page/HistoryController.h |
+++ b/Source/core/page/HistoryController.h |
@@ -155,7 +155,8 @@ public: |
private: |
void goToEntry(PassOwnPtr<HistoryEntry>, ResourceRequestCachePolicy); |
- typedef HashMap<Frame*, HistoryItem*> HistoryFrameLoadSet; |
+ class HistoryFrameLoad; |
+ typedef HashMap<Frame*, OwnPtr<HistoryFrameLoad> > HistoryFrameLoadSet; |
Nate Chapin
2014/01/23 18:19:11
Can we change this to Hashmap<RefPtr<Frame>, Histo
Jens Widell
2014/01/23 18:52:18
Certainly; much better that way.
I think I assume
|
void recursiveGoToEntry(Frame*, HistoryFrameLoadSet& sameDocumentLoads, HistoryFrameLoadSet& differentDocumentLoads); |
void updateForInitialLoadInChildFrame(Frame*, HistoryItem*); |