Home
last modified time | relevance | path

Searched refs:newWheelEvent (Results 1 – 1 of 1) sorted by relevance

/external/webkit/Source/WebKit2/UIProcess/
DWebPageProxy.cpp844 …eelEvent> coalesceWheelEvents(WebWheelEvent* oldNextWheelEvent, const WebWheelEvent& newWheelEvent) in coalesceWheelEvents() argument
849 return adoptPtr(new WebWheelEvent(newWheelEvent)); in coalesceWheelEvents()
851 …() != newWheelEvent.position() || oldNextWheelEvent->modifiers() != newWheelEvent.modifiers() || o… in coalesceWheelEvents()
852 return adoptPtr(new WebWheelEvent(newWheelEvent)); in coalesceWheelEvents()
854 FloatSize mergedDelta = oldNextWheelEvent->delta() + newWheelEvent.delta(); in coalesceWheelEvents()
855 FloatSize mergedWheelTicks = oldNextWheelEvent->wheelTicks() + newWheelEvent.wheelTicks(); in coalesceWheelEvents()
857newWheelEvent.position(), newWheelEvent.globalPosition(), mergedDelta, mergedWheelTicks, newWheelE… in coalesceWheelEvents()
860 return adoptPtr(new WebWheelEvent(newWheelEvent)); in coalesceWheelEvents()