| Index: Source/modules/accessibility/AXList.cpp
|
| diff --git a/Source/modules/accessibility/AXList.cpp b/Source/modules/accessibility/AXList.cpp
|
| index ffb8546ea782643b24b1760517281a652666ce81..716655d5282b3f9171b3e64eda2263da9c9332b4 100644
|
| --- a/Source/modules/accessibility/AXList.cpp
|
| +++ b/Source/modules/accessibility/AXList.cpp
|
| @@ -46,9 +46,9 @@ AXList::~AXList()
|
| {
|
| }
|
|
|
| -PassRefPtr<AXList> AXList::create(LayoutObject* layoutObject, AXObjectCacheImpl& axObjectCache)
|
| +PassRefPtrWillBeRawPtr<AXList> AXList::create(LayoutObject* layoutObject, AXObjectCacheImpl& axObjectCache)
|
| {
|
| - return adoptRef(new AXList(layoutObject, axObjectCache));
|
| + return adoptRefWillBeNoop(new AXList(layoutObject, axObjectCache));
|
| }
|
|
|
| bool AXList::computeAccessibilityIsIgnored(IgnoredReasons* ignoredReasons) const
|
|
|