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

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

Issue 126793004: Update HTML classes to use OVERRIDE / FINAL when needed (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 11 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/HTMLDetailsElement.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 ef4736aa9bc12a4ee2916a9702d47ae02f624e18..9631f8093dd7c5b891bf5ff0921f46e3ee18aaf3 100644
--- a/Source/core/html/HTMLElement.h
+++ b/Source/core/html/HTMLElement.h
@@ -44,7 +44,7 @@ public:
virtual String title() const OVERRIDE FINAL;
- virtual short tabIndex() const;
+ virtual short tabIndex() const OVERRIDE;
void setTabIndex(int);
void setInnerText(const String&, ExceptionState&);
@@ -54,7 +54,7 @@ public:
void insertAdjacentText(const String& where, const String& text, ExceptionState&);
virtual bool hasCustomFocusLogic() const;
- virtual bool supportsFocus() const;
+ virtual bool supportsFocus() const OVERRIDE;
String contentEditable() const;
void setContentEditable(const String&, ExceptionState&);
@@ -70,12 +70,12 @@ public:
void click();
- virtual void accessKeyAction(bool sendMouseEvents);
+ virtual void accessKeyAction(bool sendMouseEvents) OVERRIDE;
bool ieForbidsInsertHTML() const;
- virtual bool rendererIsNeeded(const RenderStyle&);
- virtual RenderObject* createRenderer(RenderStyle*);
+ virtual bool rendererIsNeeded(const RenderStyle&) OVERRIDE;
+ virtual RenderObject* createRenderer(RenderStyle*) OVERRIDE;
virtual HTMLFormElement* formOwner() const { return 0; }
@@ -105,7 +105,7 @@ protected:
virtual void collectStyleForPresentationAttribute(const QualifiedName&, const AtomicString&, MutableStylePropertySet*) OVERRIDE;
unsigned parseBorderWidthAttribute(const AtomicString&) const;
- virtual void childrenChanged(bool changedByParser = false, Node* beforeChange = 0, Node* afterChange = 0, int childCountDelta = 0);
+ virtual void childrenChanged(bool changedByParser = false, Node* beforeChange = 0, Node* afterChange = 0, int childCountDelta = 0) OVERRIDE;
void calculateAndAdjustDirectionality();
private:
« no previous file with comments | « Source/core/html/HTMLDetailsElement.h ('k') | Source/core/html/HTMLEmbedElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698