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

Unified Diff: third_party/WebKit/Source/web/WebPluginContainerImpl.cpp

Issue 2782893002: WebMouseEvent coordinates are now fractional & private (Closed)
Patch Set: Rebased, fixed a comment in web_input_event_builders_mac.mm Created 3 years, 8 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
« no previous file with comments | « third_party/WebKit/Source/web/WebPagePopupImpl.cpp ('k') | third_party/WebKit/Source/web/WebViewImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/web/WebPluginContainerImpl.cpp
diff --git a/third_party/WebKit/Source/web/WebPluginContainerImpl.cpp b/third_party/WebKit/Source/web/WebPluginContainerImpl.cpp
index a8f80d614dcd79f4d1a44fafbd6d67ef6c822204..3c33a0199bdaea47e3e3972f85d9dafaac81352b 100644
--- a/third_party/WebKit/Source/web/WebPluginContainerImpl.cpp
+++ b/third_party/WebKit/Source/web/WebPluginContainerImpl.cpp
@@ -767,8 +767,7 @@ void WebPluginContainerImpl::handleWheelEvent(WheelEvent* event) {
roundedIntPoint(m_element->layoutObject()->absoluteToLocal(
absoluteRootFrameLocation, UseTransforms));
WebMouseWheelEvent translatedEvent = event->nativeEvent().flattenTransform();
- translatedEvent.x = localPoint.x();
- translatedEvent.y = localPoint.y();
+ translatedEvent.setPositionInWidget(localPoint.x(), localPoint.y());
WebCursorInfo cursorInfo;
if (m_webPlugin->handleInputEvent(translatedEvent, cursorInfo) !=
« no previous file with comments | « third_party/WebKit/Source/web/WebPagePopupImpl.cpp ('k') | third_party/WebKit/Source/web/WebViewImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698