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

Unified Diff: Source/core/accessibility/AXARIAGridCell.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/AXARIAGrid.h ('k') | Source/core/accessibility/AXARIAGridRow.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/accessibility/AXARIAGridCell.h
diff --git a/Source/core/accessibility/AXARIAGridCell.h b/Source/core/accessibility/AXARIAGridCell.h
index 0bf53fbbfd7899c860b9ae9b65c05916a231f507..4e34c69ee67030b8f817ee3dd586a9f2bcb96c7d 100644
--- a/Source/core/accessibility/AXARIAGridCell.h
+++ b/Source/core/accessibility/AXARIAGridCell.h
@@ -33,7 +33,7 @@
namespace WebCore {
-class AXARIAGridCell : public AXTableCell {
+class AXARIAGridCell FINAL : public AXTableCell {
private:
explicit AXARIAGridCell(RenderObject*);
@@ -47,7 +47,7 @@ public:
virtual void columnIndexRange(pair<unsigned, unsigned>& columnRange) OVERRIDE;
protected:
- virtual AXObject* parentTable() const;
+ virtual AXObject* parentTable() const OVERRIDE;
};
} // namespace WebCore
« no previous file with comments | « Source/core/accessibility/AXARIAGrid.h ('k') | Source/core/accessibility/AXARIAGridRow.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698