Chromium Code Reviews

Unified Diff: Source/core/html/HTMLAreaElement.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.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « Source/core/html/HTMLAnchorElement.h ('k') | Source/core/html/HTMLBRElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLAreaElement.h
diff --git a/Source/core/html/HTMLAreaElement.h b/Source/core/html/HTMLAreaElement.h
index 01cc8aa7cde189c182370ca6afb1ded530fb4350..f6573db3e3ac21d661c07ce070736b31692487ff 100644
--- a/Source/core/html/HTMLAreaElement.h
+++ b/Source/core/html/HTMLAreaElement.h
@@ -50,12 +50,12 @@ private:
explicit HTMLAreaElement(Document&);
virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
- virtual bool supportsFocus() const;
+ virtual bool supportsFocus() const OVERRIDE;
virtual AtomicString target() const OVERRIDE;
virtual bool isKeyboardFocusable() const OVERRIDE;
- virtual bool isMouseFocusable() const;
+ virtual bool isMouseFocusable() const OVERRIDE;
virtual bool rendererIsFocusable() const OVERRIDE;
- virtual void updateFocusAppearance(bool /*restorePreviousSelection*/);
+ virtual void updateFocusAppearance(bool /*restorePreviousSelection*/) OVERRIDE;
virtual void setFocus(bool) OVERRIDE;
enum Shape { Default, Poly, Rect, Circle, Unknown };
« no previous file with comments | « Source/core/html/HTMLAnchorElement.h ('k') | Source/core/html/HTMLBRElement.h » ('j') | no next file with comments »

Powered by Google App Engine