| Index: Source/modules/accessibility/AXListBox.cpp
|
| diff --git a/Source/modules/accessibility/AXListBox.cpp b/Source/modules/accessibility/AXListBox.cpp
|
| index 1035ed616ebc1e5058b71728937cf407069fc598..6d35f84f386b9eda5da7d18538a9cf08564df6ca 100644
|
| --- a/Source/modules/accessibility/AXListBox.cpp
|
| +++ b/Source/modules/accessibility/AXListBox.cpp
|
| @@ -50,9 +50,9 @@ AXListBox::~AXListBox()
|
| {
|
| }
|
|
|
| -PassRefPtr<AXListBox> AXListBox::create(LayoutObject* layoutObject, AXObjectCacheImpl& axObjectCache)
|
| +PassRefPtrWillBeRawPtr<AXListBox> AXListBox::create(LayoutObject* layoutObject, AXObjectCacheImpl& axObjectCache)
|
| {
|
| - return adoptRef(new AXListBox(layoutObject, axObjectCache));
|
| + return adoptRefWillBeNoop(new AXListBox(layoutObject, axObjectCache));
|
| }
|
|
|
| AccessibilityRole AXListBox::determineAccessibilityRole()
|
|
|