| Index: Source/modules/accessibility/AXARIAGrid.h
|
| diff --git a/Source/modules/accessibility/AXARIAGrid.h b/Source/modules/accessibility/AXARIAGrid.h
|
| index aff751263768a6b8f12b35d4ce1d2bc655d477a3..1d403a3f8214464747af249cef1fce816a51d2c5 100644
|
| --- a/Source/modules/accessibility/AXARIAGrid.h
|
| +++ b/Source/modules/accessibility/AXARIAGrid.h
|
| @@ -42,17 +42,17 @@ private:
|
|
|
| public:
|
| static PassRefPtrWillBeRawPtr<AXARIAGrid> create(LayoutObject*, AXObjectCacheImpl&);
|
| - virtual ~AXARIAGrid();
|
| + ~AXARIAGrid() override;
|
|
|
| - virtual bool isAriaTable() const override { return true; }
|
| + bool isAriaTable() const override { return true; }
|
|
|
| - virtual void addChildren() override;
|
| + void addChildren() override;
|
|
|
| private:
|
| // ARIA treegrids and grids support selected rows.
|
| - virtual bool supportsSelectedRows() override { return true; }
|
| - virtual bool isMultiSelectable() const override { return true; }
|
| - virtual bool isTableExposableThroughAccessibility() const override { return true; }
|
| + bool supportsSelectedRows() override { return true; }
|
| + bool isMultiSelectable() const override { return true; }
|
| + bool isTableExposableThroughAccessibility() const override { return true; }
|
|
|
| bool addTableCellChild(AXObject*, HashSet<AXObject*>& appendedRows, unsigned& columnCount);
|
| };
|
|
|