| Index: Source/core/html/HTMLElement.h
|
| diff --git a/Source/core/html/HTMLElement.h b/Source/core/html/HTMLElement.h
|
| index bd155225b6ee45b347268dda9e1fa04999aaddb3..c9b64073a1c3bf3cb2e308b0a37008d2ef059ddb 100644
|
| --- a/Source/core/html/HTMLElement.h
|
| +++ b/Source/core/html/HTMLElement.h
|
| @@ -45,8 +45,8 @@ public:
|
|
|
| bool hasTagName(const HTMLQualifiedName& name) const { return hasLocalName(name.localName()); }
|
|
|
| - virtual String title() const OVERRIDE FINAL;
|
| - virtual short tabIndex() const OVERRIDE;
|
| + virtual String title() const override final;
|
| + virtual short tabIndex() const override;
|
|
|
| void setInnerText(const String&, ExceptionState&);
|
| void setOuterText(const String&, ExceptionState&);
|
| @@ -70,7 +70,7 @@ public:
|
|
|
| void click();
|
|
|
| - virtual void accessKeyAction(bool sendMouseEvents) OVERRIDE;
|
| + virtual void accessKeyAction(bool sendMouseEvents) override;
|
|
|
| bool ieForbidsInsertHTML() const;
|
|
|
| @@ -87,12 +87,12 @@ public:
|
| virtual bool isLabelable() const { return false; }
|
| // http://www.whatwg.org/specs/web-apps/current-work/multipage/elements.html#interactive-content
|
| virtual bool isInteractiveContent() const;
|
| - virtual void defaultEventHandler(Event*) OVERRIDE;
|
| + virtual void defaultEventHandler(Event*) override;
|
|
|
| static const AtomicString& eventNameForAttributeName(const QualifiedName& attrName);
|
|
|
| - virtual bool matchesReadOnlyPseudoClass() const OVERRIDE;
|
| - virtual bool matchesReadWritePseudoClass() const OVERRIDE;
|
| + virtual bool matchesReadOnlyPseudoClass() const override;
|
| + virtual bool matchesReadWritePseudoClass() const override;
|
|
|
| static const AtomicString& eventParameterName();
|
|
|
| @@ -108,16 +108,16 @@ protected:
|
| void applyAlignmentAttributeToStyle(const AtomicString&, MutableStylePropertySet*);
|
| void applyBorderAttributeToStyle(const AtomicString&, MutableStylePropertySet*);
|
|
|
| - virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
|
| - virtual bool isPresentationAttribute(const QualifiedName&) const OVERRIDE;
|
| - virtual void collectStyleForPresentationAttribute(const QualifiedName&, const AtomicString&, MutableStylePropertySet*) OVERRIDE;
|
| + virtual void parseAttribute(const QualifiedName&, const AtomicString&) override;
|
| + virtual bool isPresentationAttribute(const QualifiedName&) const override;
|
| + virtual void collectStyleForPresentationAttribute(const QualifiedName&, const AtomicString&, MutableStylePropertySet*) override;
|
| unsigned parseBorderWidthAttribute(const AtomicString&) const;
|
|
|
| - virtual void childrenChanged(const ChildrenChange&) OVERRIDE;
|
| + virtual void childrenChanged(const ChildrenChange&) override;
|
| void calculateAndAdjustDirectionality();
|
|
|
| private:
|
| - virtual String nodeName() const OVERRIDE FINAL;
|
| + virtual String nodeName() const override final;
|
|
|
| bool isHTMLElement() const WTF_DELETED_FUNCTION; // This will catch anyone doing an unnecessary check.
|
| bool isStyledElement() const WTF_DELETED_FUNCTION; // This will catch anyone doing an unnecessary check.
|
|
|