Searched defs:GestureEvent (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/events/
H A DGestureEvent.h35 class GestureEvent FINAL : public MouseRelatedEvent {
37 virtual ~GestureEvent() { }
39 static PassRefPtrWillBeRawPtr<GestureEvent> create(PassRefPtrWillBeRawPtr<AbstractView>, const PlatformGestureEvent&);
51 GestureEvent();
52 GestureEvent(const AtomicString& type, PassRefPtrWillBeRawPtr<AbstractView>, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, float deltaX, float deltaY);
60 static PassRefPtrWillBeRawPtr<GestureEventDispatchMediator> create(PassRefPtrWillBeRawPtr<GestureEvent> gestureEvent)
66 explicit GestureEventDispatchMediator(PassRefPtrWillBeRawPtr<GestureEvent>);
68 GestureEvent* event() const;
73 DEFINE_EVENT_TYPE_CASTS(GestureEvent);
H A DGestureEvent.cpp28 #include "core/events/GestureEvent.h"
33 PassRefPtrWillBeRawPtr<GestureEvent> GestureEvent::create(PassRefPtrWillBeRawPtr<AbstractView> view, const PlatformGestureEvent& event)
68 return adoptRefWillBeNoop(new GestureEvent(eventType, view, event.globalPosition().x(), event.globalPosition().y(), event.position().x(), event.position().y(), event.ctrlKey(), event.altKey(), event.shiftKey(), event.metaKey(), deltaX, deltaY));
71 const AtomicString& GestureEvent::interfaceName() const
73 // FIXME: when a GestureEvent.idl interface is defined, return the string "GestureEvent".
79 bool GestureEvent::isGestureEvent() const
84 GestureEvent::GestureEvent() function in class:WebCore::GestureEvent
90 GestureEvent::GestureEvent(const AtomicString& type, PassRefPtrWillBeRawPtr<AbstractView> view, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, float deltaX, float deltaY) function in class:WebCore::GestureEvent
[all...]
/external/chromium_org/ui/events/
H A Devent.cc747 // GestureEvent
749 GestureEvent::GestureEvent(EventType type, function in class:ui::GestureEvent
765 GestureEvent::~GestureEvent() {
768 int GestureEvent::GetLowestTouchId() const {
H A Devent.h666 class EVENTS_EXPORT GestureEvent : public LocatedEvent { class in namespace:ui
668 GestureEvent(EventType type,
676 // Create a new GestureEvent which is identical to the provided model.
680 GestureEvent(const GestureEvent& model, T* source, T* target) function in class:ui::GestureEvent
686 virtual ~GestureEvent();
/external/chromium_org/content/shell/renderer/test_runner/
H A Devent_sender.cc1679 GestureEvent(WebInputEvent::GestureScrollBegin, args);
1683 GestureEvent(WebInputEvent::GestureScrollEnd, args);
1687 GestureEvent(WebInputEvent::GestureScrollUpdate, args);
1691 GestureEvent(WebInputEvent::GestureScrollUpdateWithoutPropagation, args);
1695 GestureEvent(WebInputEvent::GestureTap, args);
1699 GestureEvent(WebInputEvent::GestureTapDown, args);
1703 GestureEvent(WebInputEvent::GestureShowPress, args);
1707 GestureEvent(WebInputEvent::GestureTapCancel, args);
1711 GestureEvent(WebInputEvent::GestureLongPress, args);
1715 GestureEvent(WebInputEven
1893 void EventSender::GestureEvent(WebInputEvent::Type type, function in class:content::EventSender
[all...]

Completed in 157 milliseconds