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

Unified Diff: Source/core/accessibility/AXARIAGridRow.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/AXARIAGridCell.h ('k') | Source/core/accessibility/AXImageMapLink.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/accessibility/AXARIAGridRow.h
diff --git a/Source/core/accessibility/AXARIAGridRow.h b/Source/core/accessibility/AXARIAGridRow.h
index 54dc1f0ebfb6f15d53d99ad0137ba9b71ef452dd..1ec9528ae5c8501d07199b59816dcbe3eff2ef12 100644
--- a/Source/core/accessibility/AXARIAGridRow.h
+++ b/Source/core/accessibility/AXARIAGridRow.h
@@ -33,7 +33,7 @@
namespace WebCore {
-class AXARIAGridRow : public AXTableRow {
+class AXARIAGridRow FINAL : public AXTableRow {
private:
explicit AXARIAGridRow(RenderObject*);
@@ -47,7 +47,7 @@ public:
virtual AXObject* headerObject() OVERRIDE;
private:
- virtual bool isARIATreeGridRow() const;
+ virtual bool isARIATreeGridRow() const OVERRIDE;
};
} // namespace WebCore
« no previous file with comments | « Source/core/accessibility/AXARIAGridCell.h ('k') | Source/core/accessibility/AXImageMapLink.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698