| Index: Source/modules/accessibility/AXMenuList.cpp
|
| diff --git a/Source/modules/accessibility/AXMenuList.cpp b/Source/modules/accessibility/AXMenuList.cpp
|
| index 44034b050f7866cbdb1c2b962ffdb24c59a128dc..671692d72d9cd4654e555c0c686eddaf139792c9 100644
|
| --- a/Source/modules/accessibility/AXMenuList.cpp
|
| +++ b/Source/modules/accessibility/AXMenuList.cpp
|
| @@ -37,9 +37,9 @@ AXMenuList::AXMenuList(LayoutMenuList* layoutObject, AXObjectCacheImpl& axObject
|
| {
|
| }
|
|
|
| -PassRefPtr<AXMenuList> AXMenuList::create(LayoutMenuList* layoutObject, AXObjectCacheImpl& axObjectCache)
|
| +PassRefPtrWillBeRawPtr<AXMenuList> AXMenuList::create(LayoutMenuList* layoutObject, AXObjectCacheImpl& axObjectCache)
|
| {
|
| - return adoptRef(new AXMenuList(layoutObject, axObjectCache));
|
| + return adoptRefWillBeNoop(new AXMenuList(layoutObject, axObjectCache));
|
| }
|
|
|
| AccessibilityRole AXMenuList::determineAccessibilityRole()
|
|
|