Home
last modified time | relevance | path

Searched refs:EventDispatchMediator (Results 1 – 12 of 12) sorted by relevance

/external/webkit/Source/WebCore/dom/
DEvent.h201 class EventDispatchMediator {
203 explicit EventDispatchMediator(PassRefPtr<Event>);
204 virtual ~EventDispatchMediator();
209 EventDispatchMediator();
218 inline EventDispatchMediator::EventDispatchMediator() in EventDispatchMediator() function
222 inline Event* EventDispatchMediator::event() const in event()
227 inline void EventDispatchMediator::setEvent(PassRefPtr<Event> event) in setEvent()
DEvent.cpp302 EventDispatchMediator::EventDispatchMediator(PassRefPtr<Event> event) in EventDispatchMediator() function in WebCore::EventDispatchMediator
307 EventDispatchMediator::~EventDispatchMediator() in ~EventDispatchMediator()
311 bool EventDispatchMediator::dispatchEvent(EventDispatcher* dispatcher) const in dispatchEvent()
DEventDispatcher.h36 class EventDispatchMediator; variable
51 static bool dispatchEvent(Node*, const EventDispatchMediator&);
DWheelEvent.cpp115 return static_cast<WheelEvent*>(EventDispatchMediator::event()); in event()
123 return EventDispatchMediator::dispatchEvent(dispatcher) && !event()->defaultHandled(); in dispatchEvent()
DKeyboardEvent.cpp165 : EventDispatchMediator(event) in KeyboardEventDispatchMediator()
172 return EventDispatchMediator::dispatchEvent(dispatcher) && !event()->defaultHandled(); in dispatchEvent()
DMouseEvent.cpp156 : EventDispatchMediator(mouseEvent) in MouseEventDispatchMediator()
162 return static_cast<MouseEvent*>(EventDispatchMediator::event()); in event()
DWheelEvent.h85 class WheelEventDispatchMediator : public EventDispatchMediator {
DKeyboardEvent.h118 class KeyboardEventDispatchMediator : public EventDispatchMediator {
DMouseEvent.h101 class MouseEventDispatchMediator : public EventDispatchMediator {
DEventDispatcher.cpp54 bool EventDispatcher::dispatchEvent(Node* node, const EventDispatchMediator& mediator) in dispatchEvent()
DNode.cpp2713 return EventDispatcher::dispatchEvent(this, EventDispatchMediator(event)); in dispatchEvent()
/external/webkit/Source/WebCore/
DChangeLog26249 (WebCore::EventDispatchMediator::EventDispatchMediator): Added default
26251 (WebCore::EventDispatchMediator::event): Inlined.
26252 (WebCore::EventDispatchMediator::setEvent): Added.
29756 Introduce EventDispatchMediator abstraction, which encapsulate all
29763 (WebCore::EventDispatchMediator::EventDispatchMediator): Added.
29764 (WebCore::EventDispatchMediator::~EventDispatchMediator): Added.
29765 (WebCore::EventDispatchMediator::dispatchEvent): Added.
29766 (WebCore::EventDispatchMediator::event): Added.
29769 (WebCore::EventDispatcher::dispatchEvent): Changed to use EventDispatchMediator.
29776 (WebCore::Node::dispatchEvent): Changed to use EventDispatchMediator.