Changeset 118611 in webkit


Ignore:
Timestamp:
May 26, 2012, 10:14:05 AM (13 years ago)
Author:
mitz@apple.com
Message:

<rdar://problem/11439771> WebProcess sends many synchronous messages to the UI process while scrolling beneath ScrollView::contentsToScreen()
https://bugs.webkit.org/show_bug.cgi?id=87571

Reviewed by Anders Carlsson.

fakeMouseEventTimerFired() uses the last known mouse position for the fake mouse event, but
calls contentsToScreen() to compute a corresponding position in screen coordinates. Avoid
this by also recording the last known mouse position in screen coordinates, and using that
value.

  • page/EventHandler.cpp:

(WebCore::EventHandler::clear): Added resetting m_currentMouseGlobalPosition.
(WebCore::EventHandler::handleMousePressEvent): Added updating m_currentMouseGlobalPosition
when updating m_currentMousePosition.
(WebCore::EventHandler::handleMouseDoubleClickEvent): Ditto.
(WebCore::EventHandler::handleMouseMoveEvent): Ditto.
(WebCore::EventHandler::handleMouseReleaseEvent): Ditto.
(WebCore::EventHandler::fakeMouseMoveEventTimerFired): Changed to use m_currentMouseGlobalPosition
in the fake event instead of calling contentsToScreen().

  • page/EventHandler.h: Added m_currentMouseGlobalPosition data member.
Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r118610 r118611  
     12012-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
    1242012-05-25  Philippe Normand  <pnormand@igalia.com>
    225
  • trunk/Source/WebCore/page/EventHandler.cpp

    r118303 r118611  
    358358#endif
    359359    m_currentMousePosition = IntPoint();
     360    m_currentMouseGlobalPosition = IntPoint();
    360361    m_mousePressNode = 0;
    361362    m_mousePressed = false;
     
    14991500    m_capturesDragging = true;
    15001501    m_currentMousePosition = mouseEvent.position();
     1502    m_currentMouseGlobalPosition = mouseEvent.globalPosition();
    15011503    m_mouseDownTimestamp = mouseEvent.timestamp();
    15021504#if ENABLE(DRAG_SUPPORT)
     
    16321634    m_mousePressed = false;
    16331635    m_currentMousePosition = mouseEvent.position();
     1636    m_currentMouseGlobalPosition = mouseEvent.globalPosition();
    16341637
    16351638    HitTestRequest request(HitTestRequest::Active);
     
    17261729    RefPtr<FrameView> protector(m_frame->view());
    17271730    m_currentMousePosition = mouseEvent.position();
     1731    m_currentMouseGlobalPosition = mouseEvent.globalPosition();
    17281732
    17291733    if (m_hoverTimer.isActive())
     
    18491853    m_mousePressed = false;
    18501854    m_currentMousePosition = mouseEvent.position();
     1855    m_currentMouseGlobalPosition = mouseEvent.globalPosition();
    18511856
    18521857#if ENABLE(SVG)
     
    26692674    bool metaKey;
    26702675    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());
    26732677    mouseMoved(fakeMouseMoveEvent);
    26742678}
  • trunk/Source/WebCore/page/EventHandler.h

    r117098 r118611  
    426426   
    427427    IntPoint m_currentMousePosition;
     428    IntPoint m_currentMouseGlobalPosition;
    428429    IntPoint m_mouseDownPos; // In our view's coords.
    429430    double m_mouseDownTimestamp;
Note: See TracChangeset for help on using the changeset viewer.