Index: Source/platform/scroll/ScrollView.h |
diff --git a/Source/platform/scroll/ScrollView.h b/Source/platform/scroll/ScrollView.h |
index 6402a002137da6d3595d260fa6642de721a16c05..47d50c16ec90864623e0d7da675435b9796ffce4 100644 |
--- a/Source/platform/scroll/ScrollView.h |
+++ b/Source/platform/scroll/ScrollView.h |
@@ -55,6 +55,9 @@ |
virtual void notifyPageThatContentAreaWillPaint() const; |
+ // NOTE: This should only be called by the overriden setScrollOffset from ScrollableArea. |
+ virtual void scrollTo(const IntSize& newOffset); |
+ |
// The window that hosts the ScrollView. The ScrollView will communicate scrolls and repaints to the |
// host window in the window's coordinate space. |
virtual HostWindow* hostWindow() const = 0; |
@@ -256,9 +259,6 @@ |
protected: |
ScrollView(); |
- // NOTE: This should only be called by the overriden setScrollOffset from ScrollableArea. |
- virtual void scrollTo(const IntSize& newOffset); |
- |
virtual void contentRectangleForPaintInvalidation(const IntRect&); |
virtual void paintContents(GraphicsContext*, const IntRect& damageRect) = 0; |