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

Unified Diff: Source/core/accessibility/AXImageMapLink.h

Issue 131093003: Update accessibility classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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/accessibility/AXARIAGridRow.h ('k') | Source/core/accessibility/AXInlineTextBox.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/accessibility/AXImageMapLink.h
diff --git a/Source/core/accessibility/AXImageMapLink.h b/Source/core/accessibility/AXImageMapLink.h
index 08276a8e30e22ce96775feaeb1cc85a8cb10986f..bbef806707a6016162c05fabdc8486ca28655157 100644
--- a/Source/core/accessibility/AXImageMapLink.h
+++ b/Source/core/accessibility/AXImageMapLink.h
@@ -35,7 +35,7 @@
namespace WebCore {
-class AXImageMapLink : public AXMockObject {
+class AXImageMapLink FINAL : public AXMockObject {
private:
AXImageMapLink();
@@ -57,7 +57,7 @@ public:
virtual Element* anchorElement() const OVERRIDE;
virtual Element* actionElement() const OVERRIDE;
virtual KURL url() const OVERRIDE;
- virtual bool isLink() const { return true; }
+ virtual bool isLink() const OVERRIDE { return true; }
virtual bool isLinked() const OVERRIDE { return true; }
virtual String title() const OVERRIDE;
virtual String accessibilityDescription() const OVERRIDE;
« no previous file with comments | « Source/core/accessibility/AXARIAGridRow.h ('k') | Source/core/accessibility/AXInlineTextBox.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698