Convert x,y pairs to IntPoint.
Created attachment 95455 [details] Patch
Comment on attachment 95455 [details] Patch Attachment 95455 [details] did not pass chromium-ews (chromium-xvfb): Output: http://queues.webkit.org/results/8753418
Created attachment 95478 [details] Patch
I guess I'll need to include <wtf/MathExtras.h>.h instead of <math.h> to make the windows build happy.
Created attachment 95511 [details] Patch
Hopefully this should make the windows bot happy. Let's wait and see...
Comment on attachment 95511 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=95511&action=review > Source/WebCore/dom/WheelEvent.cpp:46 > + , m_wheelDelta(IntPoint((int)(wheelTicks.x() * 120), (int)(wheelTicks.y() * 120))) c++ casts, not c. :) > Source/WebCore/platform/graphics/IntPoint.h:99 > + m_x = lroundf((float)m_x * sx); > + m_y = lroundf((float)m_y * sy); Again, c++, not c. Otherwise fine.
Thanks Eric. I'll try to remember to use C++ style casts in the future.
Created attachment 95630 [details] Patch for landing
Comment on attachment 95630 [details] Patch for landing Clearing flags on attachment: 95630 Committed r87865: <http://trac.webkit.org/changeset/87865>
All reviewed patches have been landed. Closing bug.
*** Bug 61575 has been marked as a duplicate of this bug. ***