Move member variable that should be private
https://bugs.webkit.org/show_bug.cgi?id=204913
Reviewed by Wenson Hsieh.
These member variables should be in the correct section.
No changing functionality, no tests needed.
* page/EventHandler.h:
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@253190 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog
index c475a12..4bc347d 100644
--- a/Source/WebCore/ChangeLog
+++ b/Source/WebCore/ChangeLog
@@ -1,3 +1,16 @@
+2019-12-05 Megan Gardner <megan_gardner@apple.com>
+
+ Move member variable that should be private
+ https://bugs.webkit.org/show_bug.cgi?id=204913
+
+ Reviewed by Wenson Hsieh.
+
+ These member variables should be in the correct section.
+
+ No changing functionality, no tests needed.
+
+ * page/EventHandler.h:
+
2019-12-05 John Wilander <wilander@apple.com>
Resource Load Statistics (experimental): Add fast mode for non-cookie website data deletion
diff --git a/Source/WebCore/page/EventHandler.h b/Source/WebCore/page/EventHandler.h
index d7c445f..190c6ac 100644
--- a/Source/WebCore/page/EventHandler.h
+++ b/Source/WebCore/page/EventHandler.h
@@ -341,8 +341,6 @@
#if PLATFORM(IOS_FAMILY)
WEBCORE_EXPORT void startSelectionAutoscroll(RenderObject* renderer, const FloatPoint& positionInWindow);
WEBCORE_EXPORT void cancelSelectionAutoscroll();
- IntPoint m_targetAutoscrollPositionInWindow;
- bool m_isAutoscrolling { false };
#endif
private:
@@ -630,6 +628,8 @@
#if PLATFORM(IOS_FAMILY)
bool m_shouldAllowMouseDownToStartDrag { false };
+ IntPoint m_targetAutoscrollPositionInWindow;
+ bool m_isAutoscrolling { false };
#endif
#if ENABLE(CURSOR_VISIBILITY)