Chromium Code Reviews| Index: Source/core/dom/Touch.h |
| diff --git a/Source/core/dom/Touch.h b/Source/core/dom/Touch.h |
| index c4896bbd4f29ad5f48feccb238ae2277e26ef9b7..fce2d846c5f1f6bbdb5b6cca061f362a034d6349 100644 |
| --- a/Source/core/dom/Touch.h |
| +++ b/Source/core/dom/Touch.h |
| @@ -59,6 +59,9 @@ 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(); } |
|
Rick Byers
2014/06/22 16:57:59
nit: put each new line directly above it's prefixe
gnana
2014/06/23 11:08:57
Done.
|
| + double radiusY() const { return m_radius.height(); } |
| + float force() const { return m_force; } |
| double webkitRadiusX() const { return m_radius.width(); } |
| double webkitRadiusY() const { return m_radius.height(); } |
| float webkitRotationAngle() const { return m_rotationAngle; } |