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

  /external/chromium_org/third_party/WebKit/Source/core/dom/
MouseEvent.h 119 class SimulatedMouseEvent : public MouseEvent {
121 static PassRefPtr<SimulatedMouseEvent> create(const AtomicString& eventType, PassRefPtr<AbstractView>, PassRefPtr<Event> underlyingEvent);
122 virtual ~SimulatedMouseEvent();
125 SimulatedMouseEvent(const AtomicString& eventType, PassRefPtr<AbstractView>, PassRefPtr<Event> underlyingEvent);
MouseEvent.cpp 209 PassRefPtr<SimulatedMouseEvent> SimulatedMouseEvent::create(const AtomicString& eventType, PassRefPtr<AbstractView> view, PassRefPtr<Event> underlyingEvent)
211 return adoptRef(new SimulatedMouseEvent(eventType, view, underlyingEvent));
214 SimulatedMouseEvent::~SimulatedMouseEvent()
218 SimulatedMouseEvent::SimulatedMouseEvent(const AtomicString& eventType, PassRefPtr<AbstractView> view, PassRefPtr<Event> underlyingEvent)
EventDispatcher.cpp 87 EventDispatcher(node, SimulatedMouseEvent::create(eventNames().mouseoverEvent, node->document()->defaultView(), underlyingEvent)).dispatch();
90 EventDispatcher(node, SimulatedMouseEvent::create(eventNames().mousedownEvent, node->document()->defaultView(), underlyingEvent)).dispatch();
93 EventDispatcher(node, SimulatedMouseEvent::create(eventNames().mouseupEvent, node->document()->defaultView(), underlyingEvent)).dispatch();
97 EventDispatcher(node, SimulatedMouseEvent::create(eventNames().clickEvent, node->document()->defaultView(), underlyingEvent)).dispatch();

Completed in 62 milliseconds