Ignore:
Timestamp:
Apr 29, 2015, 7:44:22 PM (10 years ago)
Author:
Gyuyoung Kim
Message:

Fix the EFL build after r183595
https://bugs.webkit.org/show_bug.cgi?id=144427

Patch by Hunseop Jeong <Hunseop Jeong> on 2015-04-29
Reviewed by Gyuyoung Kim.

updateWheelEventTestTriggersIfNeeded() is guarded by #if ENABLE(CSS_SCROLL_SNAP)
ENABLE(RUBBER_BANDING).
  • WebProcess/WebPage/EventDispatcher.cpp:

(WebKit::updateWheelEventTestTriggersIfNeeded):

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/WebProcess/WebPage/EventDispatcher.cpp

    r183595 r183605  
    8989}
    9090
     91#if ENABLE(CSS_SCROLL_SNAP) || ENABLE(RUBBER_BANDING)
    9192static void updateWheelEventTestTriggersIfNeeded(uint64_t pageID)
    9293{
     
    99100    page->testTrigger()->deferTestsForReason(reinterpret_cast<WheelEventTestTrigger::ScrollableAreaIdentifier>(page), WheelEventTestTrigger::ScrollingThreadSyncNeeded);
    100101}
     102#endif
    101103
    102104void EventDispatcher::wheelEvent(uint64_t pageID, const WebWheelEvent& wheelEvent, bool canRubberBandAtLeft, bool canRubberBandAtRight, bool canRubberBandAtTop, bool canRubberBandAtBottom)
Note: See TracChangeset for help on using the changeset viewer.