| Index: Source/modules/accessibility/AXTableRow.cpp
|
| diff --git a/Source/modules/accessibility/AXTableRow.cpp b/Source/modules/accessibility/AXTableRow.cpp
|
| index be62492da3a0785f1956fbfaa21d6248737b4d53..dc28622cefa79aff85c07c212304af451514232e 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()
|
|
|