| Index: Source/core/dom/Node.h
|
| diff --git a/Source/core/dom/Node.h b/Source/core/dom/Node.h
|
| index a073d8809ed633e60f2b4f008c9f6787583f486f..ac3225617a3877ec71ef9aa6793169709c61afff 100644
|
| --- a/Source/core/dom/Node.h
|
| +++ b/Source/core/dom/Node.h
|
| @@ -594,14 +594,14 @@ public:
|
|
|
| unsigned short compareDocumentPosition(const Node*, ShadowTreesTreatment = TreatShadowTreesAsDisconnected) const;
|
|
|
| - virtual Node* toNode() OVERRIDE FINAL;
|
| + virtual Node* toNode() override final;
|
|
|
| - virtual const AtomicString& interfaceName() const OVERRIDE;
|
| - virtual ExecutionContext* executionContext() const OVERRIDE FINAL;
|
| + virtual const AtomicString& interfaceName() const override;
|
| + virtual ExecutionContext* executionContext() const override final;
|
|
|
| - virtual bool addEventListener(const AtomicString& eventType, PassRefPtr<EventListener>, bool useCapture = false) OVERRIDE;
|
| - virtual bool removeEventListener(const AtomicString& eventType, PassRefPtr<EventListener>, bool useCapture = false) OVERRIDE;
|
| - virtual void removeAllEventListeners() OVERRIDE;
|
| + virtual bool addEventListener(const AtomicString& eventType, PassRefPtr<EventListener>, bool useCapture = false) override;
|
| + virtual bool removeEventListener(const AtomicString& eventType, PassRefPtr<EventListener>, bool useCapture = false) override;
|
| + virtual void removeAllEventListeners() override;
|
| void removeAllEventListenersRecursively();
|
|
|
| // Handlers to do/undo actions on the target node before an event is dispatched to it and after the event
|
| @@ -610,7 +610,7 @@ public:
|
| virtual void postDispatchEventHandler(Event*, void* /*dataFromPreDispatch*/) { }
|
|
|
| using EventTarget::dispatchEvent;
|
| - virtual bool dispatchEvent(PassRefPtrWillBeRawPtr<Event>) OVERRIDE;
|
| + virtual bool dispatchEvent(PassRefPtrWillBeRawPtr<Event>) override;
|
|
|
| void dispatchScopedEvent(PassRefPtrWillBeRawPtr<Event>);
|
| void dispatchScopedEventDispatchMediator(PassRefPtrWillBeRawPtr<EventDispatchMediator>);
|
| @@ -634,8 +634,8 @@ public:
|
| virtual void defaultEventHandler(Event*);
|
| virtual void willCallDefaultEventHandler(const Event&);
|
|
|
| - virtual EventTargetData* eventTargetData() OVERRIDE;
|
| - virtual EventTargetData& ensureEventTargetData() OVERRIDE;
|
| + virtual EventTargetData* eventTargetData() override;
|
| + virtual EventTargetData& ensureEventTargetData() override;
|
|
|
| void getRegisteredMutationObserversOfType(WillBeHeapHashMap<RawPtrWillBeMember<MutationObserver>, MutationRecordDeliveryOptions>&, MutationObserver::MutationType, const QualifiedName* attributeName);
|
| void registerMutationObserver(MutationObserver&, MutationObserverOptions, const HashSet<AtomicString>& attributeFilter);
|
| @@ -657,12 +657,12 @@ public:
|
|
|
| bool isFinishedParsingChildren() const { return getFlag(IsFinishedParsingChildrenFlag); }
|
|
|
| - virtual void trace(Visitor*) OVERRIDE;
|
| + virtual void trace(Visitor*) override;
|
|
|
| unsigned lengthOfContents() const;
|
|
|
| - virtual v8::Handle<v8::Object> wrap(v8::Handle<v8::Object> creationContext, v8::Isolate*) OVERRIDE;
|
| - virtual v8::Handle<v8::Object> associateWithWrapper(const WrapperTypeInfo*, v8::Handle<v8::Object> wrapper, v8::Isolate*) OVERRIDE;
|
| + virtual v8::Handle<v8::Object> wrap(v8::Handle<v8::Object> creationContext, v8::Isolate*) override;
|
| + virtual v8::Handle<v8::Object> associateWithWrapper(const WrapperTypeInfo*, v8::Handle<v8::Object> wrapper, v8::Isolate*) override;
|
|
|
| private:
|
| enum NodeFlags {
|
|
|