Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(158)

Unified Diff: Source/modules/accessibility/AXTable.h

Issue 1072273006: Oilpan: Prepare moving AXObject to heap (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698