| Index: Source/modules/accessibility/AXARIAGridRow.cpp
|
| diff --git a/Source/modules/accessibility/AXARIAGridRow.cpp b/Source/modules/accessibility/AXARIAGridRow.cpp
|
| index e27e0bcd88ce59add20a231873ee0b5076650f27..40d410e8c858eb488e7c8c922af6b187101209f3 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
|
|
|