| Index: Source/modules/accessibility/AXTable.h
|
| diff --git a/Source/modules/accessibility/AXTable.h b/Source/modules/accessibility/AXTable.h
|
| index 2086d8c4d4eba18a27a2006aa646aa58315962f8..58be46a9852e9b3cf5be7635daafdd2fa1c6b082 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;
|
|
|