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

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

Issue 2709033003: Migrate WTF::HashMap::get() to ::at() (Closed)
Patch Set: rebase 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/modules/accessibility/AXNodeObject.cpp
diff --git a/third_party/WebKit/Source/modules/accessibility/AXNodeObject.cpp b/third_party/WebKit/Source/modules/accessibility/AXNodeObject.cpp
index ec57e47f6437e4729c7b80c4b25ea8a2652a66a9..5b6f077f1c0090b5f73c4ad6ac0e09382aa44e0d 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXNodeObject.cpp
+++ b/third_party/WebKit/Source/modules/accessibility/AXNodeObject.cpp
@@ -912,7 +912,7 @@ void AXNodeObject::getSparseAXAttributes(
getSparseAttributeSetterMap();
AttributeCollection attributes = toElement(node)->attributesWithoutUpdate();
for (const Attribute& attr : attributes) {
- SparseAttributeSetter* setter = axSparseAttributeSetterMap.get(attr.name());
+ SparseAttributeSetter* setter = axSparseAttributeSetterMap.at(attr.name());
if (setter)
setter->run(*this, sparseAttributeClient, attr.value());
}

Powered by Google App Engine
This is Rietveld 408576698