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

Unified Diff: Source/core/html/HTMLAreaElement.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/HTMLAppletElement.h ('k') | Source/core/html/HTMLAudioElement.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 237ce3b78b7c6775d0ffaf93981284c1f6f267f5..37707708c618e9572bfa5013d81685821c93b8ac 100644
--- a/Source/core/html/HTMLAreaElement.h
+++ b/Source/core/html/HTMLAreaElement.h
@@ -32,7 +32,7 @@ class HitTestResult;
class HTMLImageElement;
class Path;
-class HTMLAreaElement FINAL : public HTMLAnchorElement {
+class HTMLAreaElement final : public HTMLAnchorElement {
DEFINE_WRAPPERTYPEINFO();
public:
DECLARE_NODE_FACTORY(HTMLAreaElement);
@@ -50,12 +50,12 @@ public:
private:
explicit HTMLAreaElement(Document&);
- virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
- virtual bool isKeyboardFocusable() const OVERRIDE;
- virtual bool isMouseFocusable() const OVERRIDE;
- virtual bool rendererIsFocusable() const OVERRIDE;
- virtual void updateFocusAppearance(bool /*restorePreviousSelection*/) OVERRIDE;
- virtual void setFocus(bool) OVERRIDE;
+ virtual void parseAttribute(const QualifiedName&, const AtomicString&) override;
+ virtual bool isKeyboardFocusable() const override;
+ virtual bool isMouseFocusable() const override;
+ virtual bool rendererIsFocusable() const override;
+ virtual void updateFocusAppearance(bool /*restorePreviousSelection*/) override;
+ virtual void setFocus(bool) override;
enum Shape { Default, Poly, Rect, Circle, Unknown };
Path getRegion(const LayoutSize&) const;
« no previous file with comments | « Source/core/html/HTMLAppletElement.h ('k') | Source/core/html/HTMLAudioElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698