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

Unified Diff: third_party/WebKit/Source/modules/accessibility/AXObjectCacheImpl.h

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/AXObjectCacheImpl.h
diff --git a/third_party/WebKit/Source/modules/accessibility/AXObjectCacheImpl.h b/third_party/WebKit/Source/modules/accessibility/AXObjectCacheImpl.h
index e62a59ba96fae0ff73fa66aa282dfdfd0ff461eb..80357d391c696dbf2e294aa47a565e94490a5a94 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXObjectCacheImpl.h
+++ b/third_party/WebKit/Source/modules/accessibility/AXObjectCacheImpl.h
@@ -116,7 +116,7 @@ class MODULES_EXPORT AXObjectCacheImpl : public AXObjectCache {
// Returns the root object for the entire document.
AXObject* rootObject();
- AXObject* objectFromAXID(AXID id) const { return m_objects.get(id); }
+ AXObject* objectFromAXID(AXID id) const { return m_objects.at(id); }
AXObject* root();
// used for objects without backing elements

Powered by Google App Engine
This is Rietveld 408576698