Index: Source/core/loader/HistoryItem.h |
diff --git a/Source/core/loader/HistoryItem.h b/Source/core/loader/HistoryItem.h |
index e113d22c389c97c444209707a42e19e4addd7c25..f2f97b3180dd432ab6daa754da14711118364a91 100644 |
--- a/Source/core/loader/HistoryItem.h |
+++ b/Source/core/loader/HistoryItem.h |
@@ -28,6 +28,7 @@ |
#define HistoryItem_h |
#include "bindings/v8/SerializedScriptValue.h" |
+#include "platform/geometry/FloatPoint.h" |
#include "platform/geometry/IntPoint.h" |
#include "platform/weborigin/Referrer.h" |
#include "wtf/RefCounted.h" |
@@ -64,6 +65,8 @@ public: |
FormData* formData(); |
const AtomicString& formContentType() const; |
+ const FloatPoint& pinchViewportScrollPoint() const; |
+ void setPinchViewportScrollPoint(const FloatPoint&); |
const IntPoint& scrollPoint() const; |
void setScrollPoint(const IntPoint&); |
void clearScrollPoint(); |
@@ -111,6 +114,7 @@ private: |
Referrer m_referrer; |
String m_target; |
+ FloatPoint m_pinchViewportScrollPoint; |
IntPoint m_scrollPoint; |
float m_pageScaleFactor; |
Vector<String> m_documentStateVector; |