Home
last modified time | relevance | path

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

/external/webkit/Source/WebKit2/UIProcess/
DWebPageProxy.cpp844 static PassOwnPtr<WebWheelEvent> coalesceWheelEvents(WebWheelEvent* oldNextWheelEvent, const WebWhe… in coalesceWheelEvents() argument
848 if (!oldNextWheelEvent) in coalesceWheelEvents()
851 …if (oldNextWheelEvent->position() != newWheelEvent.position() || oldNextWheelEvent->modifiers() !=… in coalesceWheelEvents()
854 FloatSize mergedDelta = oldNextWheelEvent->delta() + newWheelEvent.delta(); in coalesceWheelEvents()
855 FloatSize mergedWheelTicks = oldNextWheelEvent->wheelTicks() + newWheelEvent.wheelTicks(); in coalesceWheelEvents()