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

Unified Diff: Source/web/WebInputEventConversion.cpp

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
« Source/core/dom/Touch.idl ('K') | « Source/core/dom/Touch.idl ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebInputEventConversion.cpp
diff --git a/Source/web/WebInputEventConversion.cpp b/Source/web/WebInputEventConversion.cpp
index 172b826a0677344096995a3df93018433914b0a3..12c590fbeea5952009cf5561f3526a10bc06d488 100644
--- a/Source/web/WebInputEventConversion.cpp
+++ b/Source/web/WebInputEventConversion.cpp
@@ -662,7 +662,7 @@ static WebTouchPoint toWebTouchPoint(const Touch* touch, const LayoutObject* lay
point.position = convertAbsoluteLocationForLayoutObjectFloat(touch->absoluteLocation(), *layoutObject);
point.radiusX = touch->radiusX();
point.radiusY = touch->radiusY();
- point.rotationAngle = touch->webkitRotationAngle();
+ point.rotationAngle = touch->rotationAngle();
point.force = touch->force();
point.state = state;
return point;
« Source/core/dom/Touch.idl ('K') | « Source/core/dom/Touch.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698