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:blink::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:blink::GestureEvent
[all...]
/external/chromium_org/ui/events/
H A Devent.cc138 new GestureEvent(static_cast<const GestureEvent&>(event)));
154 GestureEvent* Event::AsGestureEvent() {
156 return static_cast<GestureEvent*>(this);
159 const GestureEvent* Event::AsGestureEvent() const {
161 return static_cast<const GestureEvent*>(this);
952 // GestureEvent
954 GestureEvent::GestureEvent(float x, function in class:ui::GestureEvent
967 GestureEvent
[all...]
H A Devent.h197 // Convenience methods to cast |this| to a GestureEvent. IsGestureEvent()
199 GestureEvent* AsGestureEvent();
200 const GestureEvent* AsGestureEvent() const;
788 class EVENTS_EXPORT GestureEvent : public LocatedEvent { class in namespace:ui
790 GestureEvent(float x,
796 // Create a new GestureEvent which is identical to the provided model.
800 GestureEvent(const GestureEvent& model, T* source, T* target) function in class:ui::GestureEvent
805 virtual ~GestureEvent();
/external/chromium_org/content/shell/renderer/test_runner/
H A Devent_sender.cc1711 GestureEvent(WebInputEvent::GestureScrollBegin, args);
1715 GestureEvent(WebInputEvent::GestureScrollEnd, args);
1719 GestureEvent(WebInputEvent::GestureScrollUpdate, args);
1723 GestureEvent(WebInputEvent::GestureScrollUpdateWithoutPropagation, args);
1727 GestureEvent(WebInputEvent::GestureTap, args);
1731 GestureEvent(WebInputEvent::GestureTapDown, args);
1735 GestureEvent(WebInputEvent::GestureShowPress, args);
1739 GestureEvent(WebInputEvent::GestureTapCancel, args);
1743 GestureEvent(WebInputEvent::GestureLongPress, args);
1747 GestureEvent(WebInputEven
1927 void EventSender::GestureEvent(WebInputEvent::Type type, function in class:content::EventSender
[all...]

Completed in 2785 milliseconds