Index: third_party/WebKit/Source/core/animation/AnimationStack.cpp |
diff --git a/third_party/WebKit/Source/core/animation/AnimationStack.cpp b/third_party/WebKit/Source/core/animation/AnimationStack.cpp |
index 6c4de42f269ef6a79af74e187085fbefb83ef3a6..94e54f62cbf11f4383955031282df0388d146964 100644 |
--- a/third_party/WebKit/Source/core/animation/AnimationStack.cpp |
+++ b/third_party/WebKit/Source/core/animation/AnimationStack.cpp |
@@ -45,7 +45,7 @@ namespace { |
void copyToActiveInterpolationsMap(const Vector<RefPtr<Interpolation>>& source, AnimationStack::PropertyHandleFilter propertyHandleFilter, ActiveInterpolationsMap& target) |
{ |
for (const auto& interpolation : source) { |
- PropertyHandle property = interpolation->property(); |
+ PropertyHandle property = interpolation->getProperty(); |
if (propertyHandleFilter && !propertyHandleFilter(property)) |
continue; |
ActiveInterpolationsMap::AddResult entry = target.add(property, ActiveInterpolations(1)); |