| Index: Source/modules/accessibility/AXARIAGridCell.h
|
| diff --git a/Source/modules/accessibility/AXARIAGridCell.h b/Source/modules/accessibility/AXARIAGridCell.h
|
| index 4b759201ee7f08b3ef4e4f457c1dbd007bd79f47..7f6d61db864835358043f022313aa7c169f547e6 100644
|
| --- a/Source/modules/accessibility/AXARIAGridCell.h
|
| +++ b/Source/modules/accessibility/AXARIAGridCell.h
|
| @@ -42,18 +42,18 @@ private:
|
|
|
| public:
|
| static PassRefPtrWillBeRawPtr<AXARIAGridCell> create(LayoutObject*, AXObjectCacheImpl&);
|
| - virtual ~AXARIAGridCell();
|
| + ~AXARIAGridCell() override;
|
|
|
| // fills in the start location and row span of cell
|
| - virtual void rowIndexRange(pair<unsigned, unsigned>& rowRange) override;
|
| + 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 AccessibilityRole scanToDecideHeaderRole() override final;
|
| + void columnIndexRange(pair<unsigned, unsigned>& columnRange) override;
|
| + AccessibilityRole scanToDecideHeaderRole() final;
|
|
|
| protected:
|
| bool isAriaColumnHeader() const;
|
| bool isAriaRowHeader() const;
|
| - virtual AXObject* parentTable() const override;
|
| + AXObject* parentTable() const override;
|
| };
|
|
|
| } // namespace blink
|
|
|