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

Unified Diff: third_party/WebKit/Source/core/animation/StringKeyframe.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/core/animation/StringKeyframe.h
diff --git a/third_party/WebKit/Source/core/animation/StringKeyframe.h b/third_party/WebKit/Source/core/animation/StringKeyframe.h
index 5c5deffe6053e81ea9d5aff54b5bd96924e510fa..7c39dc39a40204deb482d98468d2fe74d4ed0693 100644
--- a/third_party/WebKit/Source/core/animation/StringKeyframe.h
+++ b/third_party/WebKit/Source/core/animation/StringKeyframe.h
@@ -55,7 +55,7 @@ class StringKeyframe : public Keyframe {
}
String svgPropertyValue(const QualifiedName& attributeName) const {
- return m_svgAttributeMap.get(&attributeName);
+ return m_svgAttributeMap.at(&attributeName);
}
PropertyHandleSet properties() const override;

Powered by Google App Engine
This is Rietveld 408576698