Index: Source/core/html/HTMLBodyElement.h |
diff --git a/Source/core/html/HTMLBodyElement.h b/Source/core/html/HTMLBodyElement.h |
index 3d43a087cae674fa81624ef183d6ef985befc035..7dd1f21c09b7bb2e28a67139b58143fa4436aa88 100644 |
--- a/Source/core/html/HTMLBodyElement.h |
+++ b/Source/core/html/HTMLBodyElement.h |
@@ -60,14 +60,14 @@ private: |
virtual bool supportsFocus() const OVERRIDE; |
- virtual double scrollLeft() OVERRIDE; |
- virtual void setScrollLeft(double) OVERRIDE; |
+ virtual int scrollLeft() OVERRIDE; |
+ virtual void setScrollLeft(int) OVERRIDE; |
- virtual double scrollTop() OVERRIDE; |
- virtual void setScrollTop(double) OVERRIDE; |
+ virtual int scrollTop() OVERRIDE; |
+ virtual void setScrollTop(int) OVERRIDE; |
- virtual double scrollHeight() OVERRIDE; |
- virtual double scrollWidth() OVERRIDE; |
+ virtual int scrollHeight() OVERRIDE; |
+ virtual int scrollWidth() OVERRIDE; |
}; |
} //namespace |