| Index: Source/modules/accessibility/AXTable.h
|
| diff --git a/Source/modules/accessibility/AXTable.h b/Source/modules/accessibility/AXTable.h
|
| index f5db59c71d4c27f2a6e503e6bfae8ee119b9bc77..1a1976688554f1b602433e5286351b19c6b5ff10 100644
|
| --- a/Source/modules/accessibility/AXTable.h
|
| +++ b/Source/modules/accessibility/AXTable.h
|
| @@ -44,8 +44,9 @@ protected:
|
| AXTable(LayoutObject*, AXObjectCacheImpl&);
|
|
|
| public:
|
| - static PassRefPtr<AXTable> create(LayoutObject*, AXObjectCacheImpl&);
|
| + static PassRefPtrWillBeRawPtr<AXTable> create(LayoutObject*, AXObjectCacheImpl&);
|
| virtual ~AXTable();
|
| + DECLARE_VIRTUAL_TRACE();
|
|
|
| virtual void init() override final;
|
|
|
| @@ -83,7 +84,7 @@ protected:
|
| AccessibilityChildrenVector m_rows;
|
| AccessibilityChildrenVector m_columns;
|
|
|
| - RefPtr<AXObject> m_headerContainer;
|
| + RefPtrWillBeMember<AXObject> m_headerContainer;
|
| bool m_isAXTable;
|
|
|
| bool hasARIARole() const;
|
|
|