| Index: third_party/WebKit/Source/core/input/PointerEventManager.cpp
|
| diff --git a/third_party/WebKit/Source/core/input/PointerEventManager.cpp b/third_party/WebKit/Source/core/input/PointerEventManager.cpp
|
| index 1528d20163ce97e7746e7dda79ead3d038609fce..51300647ba96d46af25df41d9d8a46888b0fd62d 100644
|
| --- a/third_party/WebKit/Source/core/input/PointerEventManager.cpp
|
| +++ b/third_party/WebKit/Source/core/input/PointerEventManager.cpp
|
| @@ -423,13 +423,12 @@ void PointerEventManager::dispatchTouchPointerEvents(
|
| WebInputEventResult result = WebInputEventResult::NotHandled;
|
| // Do not send pointer events for stationary touches.
|
| if (touchPoint.state() != PlatformTouchPoint::TouchStationary) {
|
| - // TODO(crbug.com/608394): The adjustedPagePoint should be converted
|
| - // to client coordinates.
|
| PointerEvent* pointerEvent = m_pointerEventFactory.create(
|
| pointerEventNameForTouchPointState(touchPoint.state()),
|
| touchPoint, event.getModifiers(),
|
| touchInfo.adjustedRadius,
|
| - touchInfo.adjustedPagePoint);
|
| + touchInfo.targetFrame->view()->contentsToFrame(
|
| + roundedIntPoint(touchInfo.contentPoint)));
|
|
|
| // Consume the touch point if its pointer event is anything but NotHandled
|
| // (e.g. preventDefault is called in the listener for the pointer event).
|
|
|