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

Unified Diff: Source/core/dom/Touch.h

Issue 1149563003: Make Touch.radiusX/Y float and make Touch.webkit* aliases in the IDL (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 7 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 | « no previous file | Source/core/dom/Touch.idl » ('j') | Source/core/dom/Touch.idl » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/Touch.h
diff --git a/Source/core/dom/Touch.h b/Source/core/dom/Touch.h
index 864150f06109ccff01eb5cf6379df79066724fe5..8038088082db744476462ebd869c71aad1c6f8c6 100644
--- a/Source/core/dom/Touch.h
+++ b/Source/core/dom/Touch.h
@@ -61,13 +61,10 @@ public:
double screenY() const { return m_screenPos.y(); }
double pageX() const { return m_pagePos.x(); }
double pageY() const { return m_pagePos.y(); }
- double radiusX() const { return m_radius.width(); }
- double webkitRadiusX() const { return m_radius.width(); }
- double radiusY() const { return m_radius.height(); }
- double webkitRadiusY() const { return m_radius.height(); }
- float webkitRotationAngle() const { return m_rotationAngle; }
+ float radiusX() const { return m_radius.width(); }
+ float radiusY() const { return m_radius.height(); }
+ float rotationAngle() const { return m_rotationAngle; }
float force() const { return m_force; }
- float webkitForce() const { return m_force; }
// Blink-internal methods
const LayoutPoint& absoluteLocation() const { return m_absoluteLocation; }
« no previous file with comments | « no previous file | Source/core/dom/Touch.idl » ('j') | Source/core/dom/Touch.idl » ('J')

Powered by Google App Engine
This is Rietveld 408576698