diff options
author | Allan Sandfeld Jensen <allan.jensen@qt.io> | 2017-05-03 17:20:32 +0200 |
---|---|---|
committer | Allan Sandfeld Jensen <allan.jensen@qt.io> | 2017-05-05 09:28:09 +0000 |
commit | bb09965444b5bb20b096a291445170876225268d (patch) | |
tree | b5f6596f7e6e941b1d7d72f0ce5181500c261529 /chromium/third_party/WebKit/Source/web/WebPluginContainerImpl.cpp | |
parent | 7324afb043a0b1e623d8e8eb906cdc53bdeb4685 (diff) | |
download | qtwebengine-chromium-bb09965444b5bb20b096a291445170876225268d.tar.gz |
BASELINE: Update Chromium to 58.0.3029.98
Change-Id: Ib913750d687f29e036959c62a0cabf2412a8faa7
Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'chromium/third_party/WebKit/Source/web/WebPluginContainerImpl.cpp')
-rw-r--r-- | chromium/third_party/WebKit/Source/web/WebPluginContainerImpl.cpp | 22 |
1 files changed, 16 insertions, 6 deletions
diff --git a/chromium/third_party/WebKit/Source/web/WebPluginContainerImpl.cpp b/chromium/third_party/WebKit/Source/web/WebPluginContainerImpl.cpp index dfce5182a81..ad9aa19e129 100644 --- a/chromium/third_party/WebKit/Source/web/WebPluginContainerImpl.cpp +++ b/chromium/third_party/WebKit/Source/web/WebPluginContainerImpl.cpp @@ -761,11 +761,16 @@ void WebPluginContainerImpl::handleDragEvent(MouseEvent* event) { } void WebPluginContainerImpl::handleWheelEvent(WheelEvent* event) { - WebFloatPoint absoluteRootFrameLocation = - event->nativeEvent().positionInRootFrame(); + WebFloatPoint absoluteLocation = event->nativeEvent().positionInRootFrame(); + FrameView* view = toFrameView(parent()); + // Translate the root frame position to content coordinates. + if (view) { + absoluteLocation = view->rootFrameToContents(absoluteLocation); + } + IntPoint localPoint = roundedIntPoint(m_element->layoutObject()->absoluteToLocal( - absoluteRootFrameLocation, UseTransforms)); + absoluteLocation, UseTransforms)); WebMouseWheelEvent translatedEvent = event->nativeEvent().flattenTransform(); translatedEvent.x = localPoint.x(); translatedEvent.y = localPoint.y(); @@ -826,12 +831,17 @@ void WebPluginContainerImpl::handleTouchEvent(TouchEvent* event) { WebTouchEvent transformedEvent = event->nativeEvent()->flattenTransform(); + FrameView* view = toFrameView(parent()); + for (unsigned i = 0; i < transformedEvent.touchesLength; ++i) { - WebFloatPoint absoluteRootFrameLocation = - transformedEvent.touches[i].position; + WebFloatPoint absoluteLocation = transformedEvent.touches[i].position; + // Translate the root frame position to content coordinates. + if (view) { + absoluteLocation = view->rootFrameToContents(absoluteLocation); + } IntPoint localPoint = roundedIntPoint(m_element->layoutObject()->absoluteToLocal( - absoluteRootFrameLocation, UseTransforms)); + absoluteLocation, UseTransforms)); transformedEvent.touches[i].position.x = localPoint.x(); transformedEvent.touches[i].position.y = localPoint.y(); } |