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

Unified Diff: third_party/WebKit/Source/core/animation/KeyframeEffectModel.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/KeyframeEffectModel.h
diff --git a/third_party/WebKit/Source/core/animation/KeyframeEffectModel.h b/third_party/WebKit/Source/core/animation/KeyframeEffectModel.h
index 57329c6826cc447a3dd23fe72ca720bdd5c28a82..269047c632fbfc0534faa112ce4637784b0ec9c0 100644
--- a/third_party/WebKit/Source/core/animation/KeyframeEffectModel.h
+++ b/third_party/WebKit/Source/core/animation/KeyframeEffectModel.h
@@ -86,7 +86,7 @@ class CORE_EXPORT KeyframeEffectModelBase : public EffectModel {
const PropertySpecificKeyframeVector& getPropertySpecificKeyframes(
const PropertyHandle& property) const {
ensureKeyframeGroups();
- return m_keyframeGroups->get(property)->keyframes();
+ return m_keyframeGroups->at(property)->keyframes();
}
using KeyframeGroupMap =

Powered by Google App Engine
This is Rietveld 408576698