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

Unified Diff: Source/core/html/HTMLBodyElement.h

Issue 340903002: Revert "Subpixel precision for clientWidth, offsetWidth, scrollTop et al" (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Patch for landing Created 6 years, 6 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
« no previous file with comments | « Source/core/dom/Element.idl ('k') | Source/core/html/HTMLBodyElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « Source/core/dom/Element.idl ('k') | Source/core/html/HTMLBodyElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698