Index: Source/core/dom/Node.h |
diff --git a/Source/core/dom/Node.h b/Source/core/dom/Node.h |
index a2ea120c1c106d3bfa6ebe454e9dc6df54f2328b..726eadf4d51caf303696fd70c9413302670b66b7 100644 |
--- a/Source/core/dom/Node.h |
+++ b/Source/core/dom/Node.h |
@@ -629,8 +629,8 @@ public: |
virtual const AtomicString& interfaceName() const OVERRIDE; |
virtual ExecutionContext* executionContext() const OVERRIDE; |
- virtual bool addEventListener(const AtomicString& eventType, PassRefPtr<EventListener>, bool useCapture); |
- virtual bool removeEventListener(const AtomicString& eventType, EventListener*, bool useCapture); |
+ virtual bool addEventListener(const AtomicString& eventType, PassRefPtr<EventListener>, bool useCapture) OVERRIDE; |
+ virtual bool removeEventListener(const AtomicString& eventType, EventListener*, bool useCapture) OVERRIDE; |
// 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. |