Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1002)

Unified Diff: Source/core/loader/HistoryItem.cpp

Issue 1159723003: Don't reuse HistoryItems for multiple navigations (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/loader/HistoryItem.h ('k') | Source/web/WebViewImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/loader/HistoryItem.cpp
diff --git a/Source/core/loader/HistoryItem.cpp b/Source/core/loader/HistoryItem.cpp
index 4c531794721025c06eff61b1d2b07128af1d4a7c..0672020f96939868681f8ed86546662726fd731c 100644
--- a/Source/core/loader/HistoryItem.cpp
+++ b/Source/core/loader/HistoryItem.cpp
@@ -56,16 +56,6 @@ HistoryItem::~HistoryItem()
{
}
-void HistoryItem::generateNewItemSequenceNumber()
-{
- m_itemSequenceNumber = generateSequenceNumber();
-}
-
-void HistoryItem::generateNewDocumentSequenceNumber()
-{
- m_documentSequenceNumber = generateSequenceNumber();
-}
-
const String& HistoryItem::urlString() const
{
return m_urlString;
@@ -128,12 +118,6 @@ void HistoryItem::setScrollPoint(const IntPoint& point)
m_scrollPoint = point;
}
-void HistoryItem::clearScrollPoint()
-{
- m_scrollPoint = IntPoint();
- m_pinchViewportScrollPoint = FloatPoint();
-}
-
float HistoryItem::pageScaleFactor() const
{
return m_pageScaleFactor;
« no previous file with comments | « Source/core/loader/HistoryItem.h ('k') | Source/web/WebViewImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698