Changeset 118611 in webkit
- Timestamp:
- May 26, 2012, 10:14:05 AM (13 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r118610 r118611 1 2012-05-25 Dan Bernstein <mitz@apple.com> 2 3 <rdar://problem/11439771> WebProcess sends many synchronous messages to the UI process while scrolling beneath ScrollView::contentsToScreen() 4 https://bugs.webkit.org/show_bug.cgi?id=87571 5 6 Reviewed by Anders Carlsson. 7 8 fakeMouseEventTimerFired() uses the last known mouse position for the fake mouse event, but 9 calls contentsToScreen() to compute a corresponding position in screen coordinates. Avoid 10 this by also recording the last known mouse position in screen coordinates, and using that 11 value. 12 13 * page/EventHandler.cpp: 14 (WebCore::EventHandler::clear): Added resetting m_currentMouseGlobalPosition. 15 (WebCore::EventHandler::handleMousePressEvent): Added updating m_currentMouseGlobalPosition 16 when updating m_currentMousePosition. 17 (WebCore::EventHandler::handleMouseDoubleClickEvent): Ditto. 18 (WebCore::EventHandler::handleMouseMoveEvent): Ditto. 19 (WebCore::EventHandler::handleMouseReleaseEvent): Ditto. 20 (WebCore::EventHandler::fakeMouseMoveEventTimerFired): Changed to use m_currentMouseGlobalPosition 21 in the fake event instead of calling contentsToScreen(). 22 * page/EventHandler.h: Added m_currentMouseGlobalPosition data member. 23 1 24 2012-05-25 Philippe Normand <pnormand@igalia.com> 2 25 -
trunk/Source/WebCore/page/EventHandler.cpp
r118303 r118611 358 358 #endif 359 359 m_currentMousePosition = IntPoint(); 360 m_currentMouseGlobalPosition = IntPoint(); 360 361 m_mousePressNode = 0; 361 362 m_mousePressed = false; … … 1499 1500 m_capturesDragging = true; 1500 1501 m_currentMousePosition = mouseEvent.position(); 1502 m_currentMouseGlobalPosition = mouseEvent.globalPosition(); 1501 1503 m_mouseDownTimestamp = mouseEvent.timestamp(); 1502 1504 #if ENABLE(DRAG_SUPPORT) … … 1632 1634 m_mousePressed = false; 1633 1635 m_currentMousePosition = mouseEvent.position(); 1636 m_currentMouseGlobalPosition = mouseEvent.globalPosition(); 1634 1637 1635 1638 HitTestRequest request(HitTestRequest::Active); … … 1726 1729 RefPtr<FrameView> protector(m_frame->view()); 1727 1730 m_currentMousePosition = mouseEvent.position(); 1731 m_currentMouseGlobalPosition = mouseEvent.globalPosition(); 1728 1732 1729 1733 if (m_hoverTimer.isActive()) … … 1849 1853 m_mousePressed = false; 1850 1854 m_currentMousePosition = mouseEvent.position(); 1855 m_currentMouseGlobalPosition = mouseEvent.globalPosition(); 1851 1856 1852 1857 #if ENABLE(SVG) … … 2669 2674 bool metaKey; 2670 2675 PlatformKeyboardEvent::getCurrentModifierState(shiftKey, ctrlKey, altKey, metaKey); 2671 IntPoint globalPoint = view->contentsToScreen(IntRect(view->windowToContents(m_currentMousePosition), IntSize())).location(); 2672 PlatformMouseEvent fakeMouseMoveEvent(m_currentMousePosition, globalPoint, NoButton, PlatformEvent::MouseMoved, 0, shiftKey, ctrlKey, altKey, metaKey, currentTime()); 2676 PlatformMouseEvent fakeMouseMoveEvent(m_currentMousePosition, m_currentMouseGlobalPosition, NoButton, PlatformEvent::MouseMoved, 0, shiftKey, ctrlKey, altKey, metaKey, currentTime()); 2673 2677 mouseMoved(fakeMouseMoveEvent); 2674 2678 } -
trunk/Source/WebCore/page/EventHandler.h
r117098 r118611 426 426 427 427 IntPoint m_currentMousePosition; 428 IntPoint m_currentMouseGlobalPosition; 428 429 IntPoint m_mouseDownPos; // In our view's coords. 429 430 double m_mouseDownTimestamp;
Note:
See TracChangeset
for help on using the changeset viewer.