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

Unified Diff: third_party/WebKit/Source/core/dom/custom/V0CustomElementRegistry.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/core/dom/custom/V0CustomElementRegistry.cpp
diff --git a/third_party/WebKit/Source/core/dom/custom/V0CustomElementRegistry.cpp b/third_party/WebKit/Source/core/dom/custom/V0CustomElementRegistry.cpp
index db0fbc84273f7e64f09801602c3c16908cc9ef3f..a5d3a780ccb7138a25f559d9fe41c96bf752fe45 100644
--- a/third_party/WebKit/Source/core/dom/custom/V0CustomElementRegistry.cpp
+++ b/third_party/WebKit/Source/core/dom/custom/V0CustomElementRegistry.cpp
@@ -114,7 +114,7 @@ V0CustomElementDefinition* V0CustomElementRegistry::registerElement(
V0CustomElementDefinition* V0CustomElementRegistry::find(
const V0CustomElementDescriptor& descriptor) const {
- return m_definitions.get(descriptor);
+ return m_definitions.at(descriptor);
}
bool V0CustomElementRegistry::nameIsDefined(const AtomicString& name) const {

Powered by Google App Engine
This is Rietveld 408576698