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

Unified Diff: third_party/WebKit/Source/modules/accessibility/AXARIAGridRow.cpp

Issue 2614663008: Migrate WTF::Vector::append() to ::push_back() [part 13 of N] (Closed)
Patch Set: Created 3 years, 11 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
Index: third_party/WebKit/Source/modules/accessibility/AXARIAGridRow.cpp
diff --git a/third_party/WebKit/Source/modules/accessibility/AXARIAGridRow.cpp b/third_party/WebKit/Source/modules/accessibility/AXARIAGridRow.cpp
index f3f3708054359a5b13fff2bdf2afa96167f66e22..febaafaaef6619a3dcdffa1115f453fcf1a2c07c 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXARIAGridRow.cpp
+++ b/third_party/WebKit/Source/modules/accessibility/AXARIAGridRow.cpp
@@ -55,7 +55,7 @@ bool AXARIAGridRow::isARIATreeGridRow() const {
void AXARIAGridRow::headerObjectsForRow(AXObjectVector& headers) {
for (const auto& cell : children()) {
if (cell->roleValue() == RowHeaderRole)
- headers.append(cell);
+ headers.push_back(cell);
}
}

Powered by Google App Engine
This is Rietveld 408576698