| Index: Source/modules/accessibility/AXMenuListPopup.cpp
|
| diff --git a/Source/modules/accessibility/AXMenuListPopup.cpp b/Source/modules/accessibility/AXMenuListPopup.cpp
|
| index 129c14b3fb6ea61190f374175d4ed6842ee19492..f2cd1b6b39f88c3ca180afc7e834d00d7880f893 100644
|
| --- a/Source/modules/accessibility/AXMenuListPopup.cpp
|
| +++ b/Source/modules/accessibility/AXMenuListPopup.cpp
|
| @@ -142,12 +142,12 @@ void AXMenuListPopup::didUpdateActiveOption(int optionIndex)
|
|
|
| AXObjectCacheImpl* cache = axObjectCache();
|
| if (m_activeIndex != optionIndex && m_activeIndex >= 0 && m_activeIndex < static_cast<int>(m_children.size())) {
|
| - RefPtr<AXObject> previousChild = m_children[m_activeIndex].get();
|
| + RefPtrWillBeRawPtr<AXObject> previousChild = m_children[m_activeIndex].get();
|
| cache->postNotification(previousChild.get(), AXObjectCacheImpl::AXMenuListItemUnselected);
|
| }
|
|
|
| if (optionIndex >= 0 && optionIndex < static_cast<int>(m_children.size())) {
|
| - RefPtr<AXObject> child = m_children[optionIndex].get();
|
| + RefPtrWillBeRawPtr<AXObject> child = m_children[optionIndex].get();
|
| cache->postNotification(child.get(), AXObjectCacheImpl::AXFocusedUIElementChanged);
|
| cache->postNotification(child.get(), AXObjectCacheImpl::AXMenuListItemSelected);
|
| }
|
|
|