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

  /external/chromium_org/third_party/WebKit/Source/core/events/
GestureEvent.cpp 28 #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()
    [all...]
GestureEvent.h 35 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)
62 return adoptRefWillBeNoop(new GestureEventDispatchMediator(gestureEvent));
66 explicit GestureEventDispatchMediator(PassRefPtrWillBeRawPtr<GestureEvent>);
68 GestureEvent* event() const
    [all...]
  /external/chromium_org/ui/events/
event.cc 747 // GestureEvent
749 GestureEvent::GestureEvent(EventType type,
765 GestureEvent::~GestureEvent() {
768 int GestureEvent::GetLowestTouchId() const {
event.h 666 class EVENTS_EXPORT GestureEvent : public LocatedEvent {
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)
686 virtual ~GestureEvent();
  /external/chromium_org/content/shell/renderer/test_runner/
event_sender.cc     [all...]

Completed in 1680 milliseconds