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

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

Issue 150653006: Remove the Vector::append overload that takes a Vector (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase Created 6 years, 10 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/AXTable.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/accessibility/AXARIAGrid.cpp
diff --git a/Source/core/accessibility/AXARIAGrid.cpp b/Source/core/accessibility/AXARIAGrid.cpp
index beac9c9e6e3b1f269cc388ef634b276090560f15..aa59da0fe99d3151b7d5c784b0183a3763dd3d30 100644
--- a/Source/core/accessibility/AXARIAGrid.cpp
+++ b/Source/core/accessibility/AXARIAGrid.cpp
@@ -74,7 +74,7 @@ bool AXARIAGrid::addTableCellChild(AXObject* child, HashSet<AXObject*>& appended
if (!row->accessibilityIsIgnored())
m_children.append(row);
else
- m_children.append(row->children());
+ m_children.appendVector(row->children());
appendedRows.add(row);
return true;
« no previous file with comments | « no previous file | Source/core/accessibility/AXTable.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698