Changeset 49742 in webkit


Ignore:
Timestamp:
Oct 17, 2009 8:54:18 AM (15 years ago)
Author:
eric@webkit.org
Message:

2009-10-17 Kwang Yul Seo <skyul@company100.net>

Reviewed by Eric Seidel.

EventHandler::eventLoopHandleMouseDragged needs ENABLE(DRAG_SUPPORT) guards
https://bugs.webkit.org/show_bug.cgi?id=30472

Put ENABLE(DRAG_SUPPORT) guards around EventHandler::eventLoopHandleMouseDragged
in EventHandler.cpp. MSVC fails to compile when DRAG_SUPPORT not enabled.

  • page/EventHandler.cpp:
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r49740 r49742  
     12009-10-17  Kwang Yul Seo  <skyul@company100.net>
     2
     3        Reviewed by Eric Seidel.
     4
     5        EventHandler::eventLoopHandleMouseDragged needs ENABLE(DRAG_SUPPORT) guards
     6        https://bugs.webkit.org/show_bug.cgi?id=30472
     7
     8        Put ENABLE(DRAG_SUPPORT) guards around EventHandler::eventLoopHandleMouseDragged
     9        in EventHandler.cpp. MSVC fails to compile when DRAG_SUPPORT not enabled.
     10
     11        * page/EventHandler.cpp:
     12
    1132009-10-17  Alpha Lam  <hclam@chromium.org>
    214
  • trunk/WebCore/page/EventHandler.cpp

    r48981 r49742  
    128128}
    129129
     130#if ENABLE(DRAG_SUPPORT)
    130131inline bool EventHandler::eventLoopHandleMouseDragged(const MouseEventWithHitTestResults&)
    131132{
    132133    return false;
    133134}
     135#endif
    134136
    135137#endif
Note: See TracChangeset for help on using the changeset viewer.