| Index: Source/modules/accessibility/AXTableRow.cpp
|
| diff --git a/Source/modules/accessibility/AXTableRow.cpp b/Source/modules/accessibility/AXTableRow.cpp
|
| index 85e70197777c0cc5aadd7e01c3956ee84eaa1d42..79a17947ebb2b2421051ed82c90cf301bee5f3c8 100644
|
| --- a/Source/modules/accessibility/AXTableRow.cpp
|
| +++ b/Source/modules/accessibility/AXTableRow.cpp
|
| @@ -47,9 +47,9 @@ AXTableRow::~AXTableRow()
|
| {
|
| }
|
|
|
| -PassRefPtr<AXTableRow> AXTableRow::create(LayoutObject* layoutObject, AXObjectCacheImpl& axObjectCache)
|
| +PassRefPtrWillBeRawPtr<AXTableRow> AXTableRow::create(LayoutObject* layoutObject, AXObjectCacheImpl& axObjectCache)
|
| {
|
| - return adoptRef(new AXTableRow(layoutObject, axObjectCache));
|
| + return adoptRefWillBeNoop(new AXTableRow(layoutObject, axObjectCache));
|
| }
|
|
|
| AccessibilityRole AXTableRow::determineAccessibilityRole()
|
|
|