Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(233)

Unified Diff: Source/core/accessibility/AXListBox.cpp

Issue 275573003: Oilpan: Prepare to move select and option elements to Oilpan heap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | Source/core/accessibility/AXListBoxOption.cpp » ('j') | Source/core/html/HTMLSelectElement.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/accessibility/AXListBox.cpp
diff --git a/Source/core/accessibility/AXListBox.cpp b/Source/core/accessibility/AXListBox.cpp
index 6ac49d143c80f01f4c0e26a98d18c2ba9ad7ba90..432302b6c8c5f40d578fad7690b343ce762e8c1a 100644
--- a/Source/core/accessibility/AXListBox.cpp
+++ b/Source/core/accessibility/AXListBox.cpp
@@ -61,7 +61,7 @@ void AXListBox::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++) {
// The cast to HTMLElement below is safe because the only other possible listItem type
« no previous file with comments | « no previous file | Source/core/accessibility/AXListBoxOption.cpp » ('j') | Source/core/html/HTMLSelectElement.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698