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

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

Issue 2657443005: Migrate WTF::HashSet::add() to ::insert() [part 1 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/AXTable.cpp
diff --git a/third_party/WebKit/Source/modules/accessibility/AXTable.cpp b/third_party/WebKit/Source/modules/accessibility/AXTable.cpp
index af68f1a426918f858b4f40cd3ed23dfb4c18c28b..1952d30fe93faf2ec4ab83b747478f66ef4299b4 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXTable.cpp
+++ b/third_party/WebKit/Source/modules/accessibility/AXTable.cpp
@@ -419,7 +419,7 @@ void AXTable::addChildren() {
m_rows.push_back(row);
if (!row->accessibilityIsIgnored())
m_children.push_back(row);
- appendedRows.add(row);
+ appendedRows.insert(row);
}
tableSection = table->sectionBelow(tableSection, SkipEmptySections);

Powered by Google App Engine
This is Rietveld 408576698