| Index: Source/core/dom/Node.h | 
| diff --git a/Source/core/dom/Node.h b/Source/core/dom/Node.h | 
| index 8af9e7eafb048861a24a3ca99bba71f580ee71ff..658ca106c84725eaed5627748ecbdc641c4c5430 100644 | 
| --- a/Source/core/dom/Node.h | 
| +++ b/Source/core/dom/Node.h | 
| @@ -635,8 +635,8 @@ public: | 
|  | 
| virtual Node* toNode(); | 
|  | 
| -    virtual const AtomicString& interfaceName() const; | 
| -    virtual ScriptExecutionContext* scriptExecutionContext() const; | 
| +    virtual const AtomicString& interfaceName() const OVERRIDE; | 
| +    virtual ScriptExecutionContext* scriptExecutionContext() const OVERRIDE; | 
|  | 
| virtual bool addEventListener(const AtomicString& eventType, PassRefPtr<EventListener>, bool useCapture); | 
| virtual bool removeEventListener(const AtomicString& eventType, EventListener*, bool useCapture); | 
| @@ -676,8 +676,8 @@ public: | 
| using TreeShared<Node>::ref; | 
| using TreeShared<Node>::deref; | 
|  | 
| -    virtual EventTargetData* eventTargetData(); | 
| -    virtual EventTargetData* ensureEventTargetData(); | 
| +    virtual EventTargetData* eventTargetData() OVERRIDE; | 
| +    virtual EventTargetData& ensureEventTargetData() OVERRIDE; | 
|  | 
| void getRegisteredMutationObserversOfType(HashMap<MutationObserver*, MutationRecordDeliveryOptions>&, MutationObserver::MutationType, const QualifiedName* attributeName); | 
| void registerMutationObserver(MutationObserver*, MutationObserverOptions, const HashSet<AtomicString>& attributeFilter); | 
| @@ -833,8 +833,8 @@ private: | 
| // Used to share code between lazyAttach and setNeedsStyleRecalc. | 
| void markAncestorsWithChildNeedsStyleRecalc(); | 
|  | 
| -    virtual void refEventTarget(); | 
| -    virtual void derefEventTarget(); | 
| +    virtual void refEventTarget() OVERRIDE; | 
| +    virtual void derefEventTarget() OVERRIDE; | 
|  | 
| virtual RenderStyle* nonRendererStyle() const { return 0; } | 
|  | 
|  |