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

  /external/chromium_org/third_party/WebKit/Source/core/dom/
WheelEvent.cpp 24 #include "core/dom/WheelEvent.h"
35 , deltaMode(WheelEvent::DOM_DELTA_PIXEL)
39 WheelEvent::WheelEvent()
46 WheelEvent::WheelEvent(const AtomicString& type, const WheelEventInit& initializer)
54 WheelEvent::WheelEvent(const FloatPoint& wheelTicks, const FloatPoint& rawDelta, unsigned deltaMode,
70 void WheelEvent::initWheelEvent(int rawDeltaX, int rawDeltaY, PassRefPtr<AbstractView> view,
95 void WheelEvent::initWebKitWheelEvent(int rawDeltaX, int rawDeltaY, PassRefPtr<AbstractView> view
    [all...]
WheelEvent.h 43 class WheelEvent : public MouseEvent {
53 static PassRefPtr<WheelEvent> create()
55 return adoptRef(new WheelEvent);
58 static PassRefPtr<WheelEvent> create(const AtomicString& type, const WheelEventInit& initializer)
60 return adoptRef(new WheelEvent(type, initializer));
63 static PassRefPtr<WheelEvent> create(const FloatPoint& wheelTicks,
68 return adoptRef(new WheelEvent(wheelTicks, rawDelta, deltaMode, view,
93 WheelEvent();
94 WheelEvent(const AtomicString&, const WheelEventInit&);
95 WheelEvent(const FloatPoint& wheelTicks, const FloatPoint& rawDelta
    [all...]
  /external/chromium_org/native_client_sdk/src/examples/api/input_event/
custom_events.h 48 // Convert the WheelEvent to a string
64 // Convert the WheelEvent to a string
102 // Convert the WheelEvent to a string
116 class WheelEvent : public Event {
118 // WheelEvent Constructor. |modifiers| is passed to Event base class.
122 WheelEvent(int modifiers,
136 // Convert the WheelEvent to a string

Completed in 973 milliseconds