Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1047)

Unified Diff: Source/core/html/HTMLElement.h

Issue 635793002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/html (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/html/HTMLDocument.h ('k') | Source/core/html/HTMLEmbedElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.
« no previous file with comments | « Source/core/html/HTMLDocument.h ('k') | Source/core/html/HTMLEmbedElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698