Index: third_party/WebKit/Source/web/WebInputEventConversion.cpp |
diff --git a/third_party/WebKit/Source/web/WebInputEventConversion.cpp b/third_party/WebKit/Source/web/WebInputEventConversion.cpp |
index c41f9e64ca2ea778fd52382cb9649c672c2c535f..72ebde36a0ddc91c0ea83d872c6a87d0f45edf45 100644 |
--- a/third_party/WebKit/Source/web/WebInputEventConversion.cpp |
+++ b/third_party/WebKit/Source/web/WebInputEventConversion.cpp |
@@ -690,6 +690,7 @@ static WebTouchPoint toWebTouchPoint(const Touch* touch, |
point.rotationAngle = touch->rotationAngle(); |
point.force = touch->force(); |
point.state = state; |
+ point.pointerType = touch->pointerProperties().pointerType; |
mustaq
2016/11/17 21:24:57
Need to set point.button from pointerProperties().
denniskempin
2016/11/28 19:40:48
Done.
|
return point; |
} |