+2013-10-03 Ryosuke Niwa <rniwa@webkit.org>
+
+ Remove preDispatchEventHandler and postDispatchEventHandler,
+ functions that are supposed to be removed in the previous commit (r156825).
+
+ * dom/Node.h:
+
2013-10-02 Ryosuke Niwa <rniwa@webkit.org>
Get rid of Node::preDispatchEventHandler and Node::postDispatchEventHandler
virtual bool addEventListener(const AtomicString& eventType, PassRefPtr<EventListener>, bool useCapture);
virtual bool removeEventListener(const AtomicString& eventType, EventListener*, bool useCapture);
- // Handlers to do/undo actions on the target node before an event is dispatched to it and after the event
- // has been dispatched. The data pointer is handed back by the preDispatch and passed to postDispatch.
- virtual void* preDispatchEventHandler(Event*) { return 0; }
- virtual void postDispatchEventHandler(Event*, void* /*dataFromPreDispatch*/) { }
-
using EventTarget::dispatchEvent;
virtual bool dispatchEvent(PassRefPtr<Event>) OVERRIDE;