| Index: Source/modules/accessibility/AXARIAGridRow.cpp
|
| diff --git a/Source/modules/accessibility/AXARIAGridRow.cpp b/Source/modules/accessibility/AXARIAGridRow.cpp
|
| index 82df84dc7ba5176ae0c5a59078b2d43e00350d6e..348090347bd8d4b1c7ddf2c62c6558c2da9d407b 100644
|
| --- a/Source/modules/accessibility/AXARIAGridRow.cpp
|
| +++ b/Source/modules/accessibility/AXARIAGridRow.cpp
|
| @@ -44,9 +44,9 @@ AXARIAGridRow::~AXARIAGridRow()
|
| {
|
| }
|
|
|
| -PassRefPtr<AXARIAGridRow> AXARIAGridRow::create(LayoutObject* layoutObject, AXObjectCacheImpl& axObjectCache)
|
| +PassRefPtrWillBeRawPtr<AXARIAGridRow> AXARIAGridRow::create(LayoutObject* layoutObject, AXObjectCacheImpl& axObjectCache)
|
| {
|
| - return adoptRef(new AXARIAGridRow(layoutObject, axObjectCache));
|
| + return adoptRefWillBeNoop(new AXARIAGridRow(layoutObject, axObjectCache));
|
| }
|
|
|
| bool AXARIAGridRow::isARIATreeGridRow() const
|
|
|