| Index: Source/core/accessibility/AXARIAGridCell.h
|
| diff --git a/Source/core/accessibility/AXARIAGridCell.h b/Source/core/accessibility/AXARIAGridCell.h
|
| index a0d178d8d3856ad9ad09340dd3f03affaa2f8c40..2eaab9acad6ad4102b0e66d45684c4d14178b4e4 100644
|
| --- a/Source/core/accessibility/AXARIAGridCell.h
|
| +++ b/Source/core/accessibility/AXARIAGridCell.h
|
| @@ -33,7 +33,7 @@
|
|
|
| namespace blink {
|
|
|
| -class AXARIAGridCell FINAL : public AXTableCell {
|
| +class AXARIAGridCell final : public AXTableCell {
|
|
|
| private:
|
| explicit AXARIAGridCell(RenderObject*);
|
| @@ -42,12 +42,12 @@ public:
|
| virtual ~AXARIAGridCell();
|
|
|
| // fills in the start location and row span of cell
|
| - virtual void rowIndexRange(pair<unsigned, unsigned>& rowRange) OVERRIDE;
|
| + virtual void rowIndexRange(pair<unsigned, unsigned>& rowRange) override;
|
| // fills in the start location and column span of cell
|
| - virtual void columnIndexRange(pair<unsigned, unsigned>& columnRange) OVERRIDE;
|
| + virtual void columnIndexRange(pair<unsigned, unsigned>& columnRange) override;
|
|
|
| protected:
|
| - virtual AXObject* parentTable() const OVERRIDE;
|
| + virtual AXObject* parentTable() const override;
|
| };
|
|
|
| } // namespace blink
|
|
|