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

Unified Diff: third_party/WebKit/Source/core/dom/NthIndexCache.cpp

Issue 2671933002: Migrate WTF::HashMap::add() to ::insert() (Closed)
Patch Set: rebase, add TODOs Created 3 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
Index: third_party/WebKit/Source/core/dom/NthIndexCache.cpp
diff --git a/third_party/WebKit/Source/core/dom/NthIndexCache.cpp b/third_party/WebKit/Source/core/dom/NthIndexCache.cpp
index 59fd8dcef79fc00fb1f2a68ac22ae3f8c61ab89e..dad4c1daec63b1f6e3f189c4a85f30c214b34640 100644
--- a/third_party/WebKit/Source/core/dom/NthIndexCache.cpp
+++ b/third_party/WebKit/Source/core/dom/NthIndexCache.cpp
@@ -155,7 +155,7 @@ void NthIndexCache::cacheNthIndexDataForParent(Element& element) {
m_parentMap = new ParentMap();
ParentMap::AddResult addResult =
- m_parentMap->add(element.parentNode(), nullptr);
+ m_parentMap->insert(element.parentNode(), nullptr);
DCHECK(addResult.isNewEntry);
addResult.storedValue->value = new NthIndexData(*element.parentNode());
}
@@ -166,7 +166,7 @@ NthIndexCache::IndexByType& NthIndexCache::ensureTypeIndexMap(
m_parentMapForType = new ParentMapForType();
ParentMapForType::AddResult addResult =
- m_parentMapForType->add(&parent, nullptr);
+ m_parentMapForType->insert(&parent, nullptr);
if (addResult.isNewEntry)
addResult.storedValue->value = new IndexByType();
@@ -176,8 +176,8 @@ NthIndexCache::IndexByType& NthIndexCache::ensureTypeIndexMap(
void NthIndexCache::cacheNthOfTypeIndexDataForParent(Element& element) {
DCHECK(element.parentNode());
- IndexByType::AddResult addResult =
- ensureTypeIndexMap(*element.parentNode()).add(element.tagName(), nullptr);
+ IndexByType::AddResult addResult = ensureTypeIndexMap(*element.parentNode())
+ .insert(element.tagName(), nullptr);
DCHECK(addResult.isNewEntry);
addResult.storedValue->value =
new NthIndexData(*element.parentNode(), element.tagQName());
@@ -230,7 +230,7 @@ NthIndexData::NthIndexData(ContainerNode& parent) {
for (Element* sibling = ElementTraversal::firstChild(parent); sibling;
sibling = ElementTraversal::nextSibling(*sibling)) {
if (!(++count % spread))
- m_elementIndexMap.add(sibling, count);
+ m_elementIndexMap.insert(sibling, count);
}
DCHECK(count);
m_count = count;
@@ -250,7 +250,7 @@ NthIndexData::NthIndexData(ContainerNode& parent, const QualifiedName& type) {
sibling;
sibling = ElementTraversal::nextSibling(*sibling, HasTagName(type))) {
if (!(++count % spread))
- m_elementIndexMap.add(sibling, count);
+ m_elementIndexMap.insert(sibling, count);
}
DCHECK(count);
m_count = count;

Powered by Google App Engine
This is Rietveld 408576698