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

Unified Diff: third_party/WebKit/Source/core/animation/animatable/AnimatableValueKeyframe.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/animatable/AnimatableValueKeyframe.h
diff --git a/third_party/WebKit/Source/core/animation/animatable/AnimatableValueKeyframe.h b/third_party/WebKit/Source/core/animation/animatable/AnimatableValueKeyframe.h
index 5ffd11469756b6f735101863173a9da9ede164ab..de01d8c5badca365c17a388fd04042c6ee74877a 100644
--- a/third_party/WebKit/Source/core/animation/animatable/AnimatableValueKeyframe.h
+++ b/third_party/WebKit/Source/core/animation/animatable/AnimatableValueKeyframe.h
@@ -28,7 +28,7 @@ class CORE_EXPORT AnimatableValueKeyframe : public Keyframe {
}
AnimatableValue* propertyValue(CSSPropertyID property) const {
DCHECK(m_propertyValues.contains(property));
- return m_propertyValues.get(property);
+ return m_propertyValues.at(property);
}
PropertyHandleSet properties() const override;

Powered by Google App Engine
This is Rietveld 408576698