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

Unified Diff: Source/core/rendering/RenderListBox.h

Issue 134443003: Implement CSSOM Smooth Scroll API (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 6 years, 10 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
Index: Source/core/rendering/RenderListBox.h
diff --git a/Source/core/rendering/RenderListBox.h b/Source/core/rendering/RenderListBox.h
index dfe947ab50ce3e3a2a8750dffab18e0d16414aa6..32e4eccba2fb9772c2c22bd3a0607814e9a8f4e5 100644
--- a/Source/core/rendering/RenderListBox.h
+++ b/Source/core/rendering/RenderListBox.h
@@ -98,8 +98,8 @@ private:
virtual int scrollTop() const OVERRIDE;
virtual int scrollWidth() const OVERRIDE;
virtual int scrollHeight() const OVERRIDE;
- virtual void setScrollLeft(int) OVERRIDE;
- virtual void setScrollTop(int) OVERRIDE;
+ virtual void setScrollLeft(int, ScrollBehavior) OVERRIDE;
+ virtual void setScrollTop(int, ScrollBehavior) OVERRIDE;
virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, const HitTestLocation& locationInContainer, const LayoutPoint& accumulatedOffset, HitTestAction) OVERRIDE;
@@ -123,6 +123,9 @@ private:
virtual IntPoint lastKnownMousePosition() const OVERRIDE;
virtual bool shouldSuspendScrollAnimations() const OVERRIDE;
virtual bool scrollbarsCanBeActive() const OVERRIDE;
+ virtual bool registerForAnimation() OVERRIDE;
+ virtual void deregisterForAnimation() OVERRIDE;
+ virtual bool scheduleAnimation() OVERRIDE;
virtual IntPoint minimumScrollPosition() const OVERRIDE;
virtual IntPoint maximumScrollPosition() const OVERRIDE;
virtual bool userInputScrollable(ScrollbarOrientation) const OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698