Index: Source/core/accessibility/AXMenuListPopup.cpp |
diff --git a/Source/core/accessibility/AXMenuListPopup.cpp b/Source/core/accessibility/AXMenuListPopup.cpp |
index b5641a5d497bb35b50e7137526c939098f7c2a75..b616e4726979a06c9571463ab9d5458836fc85f5 100644 |
--- a/Source/core/accessibility/AXMenuListPopup.cpp |
+++ b/Source/core/accessibility/AXMenuListPopup.cpp |
@@ -99,7 +99,7 @@ void AXMenuListPopup::addChildren() |
m_haveChildren = true; |
- const Vector<HTMLElement*>& listItems = toHTMLSelectElement(selectNode)->listItems(); |
+ const WillBeHeapVector<RawPtrWillBeMember<HTMLElement> >& listItems = toHTMLSelectElement(selectNode)->listItems(); |
unsigned length = listItems.size(); |
for (unsigned i = 0; i < length; i++) { |
AXMenuListOption* option = menuListOptionAXObject(listItems[i]); |