| Index: Source/modules/accessibility/AXList.cpp
|
| diff --git a/Source/modules/accessibility/AXList.cpp b/Source/modules/accessibility/AXList.cpp
|
| index 06c759e7400cbc87e96e3e5b7d110b8a8e671b4c..03f7912ae59bc4ee5ae3c3e4599b5279b41c784d 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
|
|
|