Index: third_party/WebKit/Source/core/animation/AnimationStack.h |
diff --git a/third_party/WebKit/Source/core/animation/AnimationStack.h b/third_party/WebKit/Source/core/animation/AnimationStack.h |
index c52a951fe7869359c628a3abb6e5af6fb7b557b5..cd1900c74e8e0f151c2d3275ece28b98b753b1cc 100644 |
--- a/third_party/WebKit/Source/core/animation/AnimationStack.h |
+++ b/third_party/WebKit/Source/core/animation/AnimationStack.h |
@@ -56,7 +56,9 @@ public: |
void add(SampledEffect* effect) { m_effects.append(effect); } |
bool isEmpty() const { return m_effects.isEmpty(); } |
bool hasActiveAnimationsOnCompositor(CSSPropertyID) const; |
- static ActiveInterpolationsMap activeInterpolations(AnimationStack*, const HeapVector<Member<InertEffect>>* newAnimations, const HeapHashSet<Member<const Animation>>* suppressedAnimations, KeyframeEffect::Priority); |
+ |
+ using PropertyHandleFilter = bool (*)(const PropertyHandle&); |
+ static ActiveInterpolationsMap activeInterpolations(AnimationStack*, const HeapVector<Member<InertEffect>>* newAnimations, const HeapHashSet<Member<const Animation>>* suppressedAnimations, KeyframeEffect::Priority, PropertyHandleFilter = nullptr); |
bool getAnimatedBoundingBox(FloatBox&, CSSPropertyID) const; |
DECLARE_TRACE(); |