| Index: Source/core/accessibility/AXTableCell.h
|
| diff --git a/Source/core/accessibility/AXTableCell.h b/Source/core/accessibility/AXTableCell.h
|
| index c62d0d32c5ac136b49b42549b31523d170abb730..205eb700c9304c996c3262ccb109f77f85c7fc9f 100644
|
| --- a/Source/core/accessibility/AXTableCell.h
|
| +++ b/Source/core/accessibility/AXTableCell.h
|
| @@ -41,7 +41,7 @@ public:
|
| static PassRefPtr<AXTableCell> create(RenderObject*);
|
| virtual ~AXTableCell();
|
|
|
| - virtual bool isTableCell() const OVERRIDE;
|
| + virtual bool isTableCell() const OVERRIDE FINAL;
|
|
|
| // fills in the start location and row span of cell
|
| virtual void rowIndexRange(pair<unsigned, unsigned>& rowRange);
|
| @@ -51,13 +51,13 @@ public:
|
| protected:
|
| virtual AXObject* parentTable() const;
|
| int m_rowIndex;
|
| - virtual AccessibilityRole determineAccessibilityRole() OVERRIDE;
|
| + virtual AccessibilityRole determineAccessibilityRole() OVERRIDE FINAL;
|
|
|
| private:
|
| // If a table cell is not exposed as a table cell, a TH element can serve as its title UI element.
|
| - virtual AXObject* titleUIElement() const OVERRIDE;
|
| - virtual bool exposesTitleUIElement() const OVERRIDE { return true; }
|
| - virtual bool computeAccessibilityIsIgnored() const OVERRIDE;
|
| + virtual AXObject* titleUIElement() const OVERRIDE FINAL;
|
| + virtual bool exposesTitleUIElement() const OVERRIDE FINAL { return true; }
|
| + virtual bool computeAccessibilityIsIgnored() const OVERRIDE FINAL;
|
| };
|
|
|
| DEFINE_AX_OBJECT_TYPE_CASTS(AXTableCell, isTableCell());
|
|
|