HomeSort by relevance Sort by last modified time
    Searched defs:WheelEvent (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/events/
WheelEvent.cpp 25 #include "core/events/WheelEvent.h"
39 , deltaMode(WheelEvent::DOM_DELTA_PIXEL)
43 WheelEvent::WheelEvent()
53 WheelEvent::WheelEvent(const AtomicString& type, const WheelEventInit& initializer)
64 WheelEvent::WheelEvent(const FloatPoint& wheelTicks, const FloatPoint& rawDelta, unsigned deltaMode,
82 void WheelEvent::initWheelEvent(int rawDeltaX, int rawDeltaY, PassRefPtr<AbstractView> view,
106 void WheelEvent::initWebKitWheelEvent(int rawDeltaX, int rawDeltaY, PassRefPtr<AbstractView> view
    [all...]
WheelEvent.h 47 class WheelEvent : public MouseEvent {
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(const FloatPoint& wheelTicks, const FloatPoint& rawDelta
    [all...]

Completed in 39 milliseconds