Searched defs:WheelEvent (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/events/
H A DWheelEvent.cpp25 #include "core/events/WheelEvent.h"
39 , deltaMode(WheelEvent::DOM_DELTA_PIXEL)
43 WheelEvent::WheelEvent() function in class:WebCore::WheelEvent
53 WheelEvent::WheelEvent(const AtomicString& type, const WheelEventInit& initializer) function in class:WebCore::WheelEvent
64 WheelEvent::WheelEvent(const FloatPoint& wheelTicks, const FloatPoint& rawDelta, unsigned deltaMode, function in class:WebCore::WheelEvent
82 void WheelEvent::initWheelEvent(int rawDeltaX, int rawDeltaY, PassRefPtr<AbstractView> view,
106 void WheelEvent
[all...]
H A DWheelEvent.h47 class WheelEvent : public MouseEvent { class in namespace:WebCore
57 static PassRefPtr<WheelEvent> create()
59 return adoptRef(new WheelEvent);
62 static PassRefPtr<WheelEvent> create(const AtomicString& type, const WheelEventInit& initializer)
64 return adoptRef(new WheelEvent(type, initializer));
67 static PassRefPtr<WheelEvent> create(const FloatPoint& wheelTicks,
72 return adoptRef(new WheelEvent(wheelTicks, rawDelta, deltaMode, view,
101 WheelEvent();
102 WheelEvent(const AtomicString&, const WheelEventInit&);
103 WheelEvent(cons
[all...]

Completed in 83 milliseconds