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

Unified Diff: Source/core/html/HTMLBodyElement.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/html/HTMLBodyElement.h
diff --git a/Source/core/html/HTMLBodyElement.h b/Source/core/html/HTMLBodyElement.h
index fa247ff978bb32f5a56eb6c28c5d81339a7f3d24..e6130f1489d0a7272fdb45600347fa4da06f20d3 100644
--- a/Source/core/html/HTMLBodyElement.h
+++ b/Source/core/html/HTMLBodyElement.h
@@ -57,10 +57,10 @@ private:
virtual bool supportsFocus() const OVERRIDE;
virtual int scrollLeft() OVERRIDE;
- virtual void setScrollLeft(int) OVERRIDE;
+ virtual void setScrollLeftInternal(int scrollLeft, ScrollBehavior) OVERRIDE;
virtual int scrollTop() OVERRIDE;
- virtual void setScrollTop(int) OVERRIDE;
+ virtual void setScrollTopInternal(int scrollTop, ScrollBehavior) OVERRIDE;
virtual int scrollHeight() OVERRIDE;
virtual int scrollWidth() OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698