| Index: Source/core/animation/css/CSSAnimationUpdate.h
|
| diff --git a/Source/core/animation/css/CSSAnimationUpdate.h b/Source/core/animation/css/CSSAnimationUpdate.h
|
| index af58fce4211dd1a01214f398e778f6dc2f3873f6..ffa48e63579e7ce5e7f94dacb9afa0d7002c656e 100644
|
| --- a/Source/core/animation/css/CSSAnimationUpdate.h
|
| +++ b/Source/core/animation/css/CSSAnimationUpdate.h
|
| @@ -146,11 +146,11 @@ public:
|
| const NewTransitionMap& newTransitions() const { return m_newTransitions; }
|
| const HashSet<CSSPropertyID>& cancelledTransitions() const { return m_cancelledTransitions; }
|
|
|
| - void adoptActiveInterpolationsForAnimations(WillBeHeapHashMap<CSSPropertyID, RefPtrWillBeMember<Interpolation>>& newMap) { newMap.swap(m_activeInterpolationsForAnimations); }
|
| - void adoptActiveInterpolationsForTransitions(WillBeHeapHashMap<CSSPropertyID, RefPtrWillBeMember<Interpolation>>& newMap) { newMap.swap(m_activeInterpolationsForTransitions); }
|
| - const WillBeHeapHashMap<CSSPropertyID, RefPtrWillBeMember<Interpolation>>& activeInterpolationsForAnimations() const { return m_activeInterpolationsForAnimations; }
|
| - const WillBeHeapHashMap<CSSPropertyID, RefPtrWillBeMember<Interpolation>>& activeInterpolationsForTransitions() const { return m_activeInterpolationsForTransitions; }
|
| - WillBeHeapHashMap<CSSPropertyID, RefPtrWillBeMember<Interpolation>>& activeInterpolationsForAnimations() { return m_activeInterpolationsForAnimations; }
|
| + void adoptActiveInterpolationsForAnimations(InterpolationPipelineMap& newMap) { newMap.swap(m_activeInterpolationsForAnimations); }
|
| + void adoptActiveInterpolationsForTransitions(InterpolationPipelineMap& newMap) { newMap.swap(m_activeInterpolationsForTransitions); }
|
| + const InterpolationPipelineMap& activeInterpolationsForAnimations() const { return m_activeInterpolationsForAnimations; }
|
| + const InterpolationPipelineMap& activeInterpolationsForTransitions() const { return m_activeInterpolationsForTransitions; }
|
| + InterpolationPipelineMap& activeInterpolationsForAnimations() { return m_activeInterpolationsForAnimations; }
|
|
|
| bool isEmpty() const
|
| {
|
| @@ -181,8 +181,8 @@ private:
|
| NewTransitionMap m_newTransitions;
|
| HashSet<CSSPropertyID> m_cancelledTransitions;
|
|
|
| - WillBeHeapHashMap<CSSPropertyID, RefPtrWillBeMember<Interpolation>> m_activeInterpolationsForAnimations;
|
| - WillBeHeapHashMap<CSSPropertyID, RefPtrWillBeMember<Interpolation>> m_activeInterpolationsForTransitions;
|
| + InterpolationPipelineMap m_activeInterpolationsForAnimations;
|
| + InterpolationPipelineMap m_activeInterpolationsForTransitions;
|
| };
|
|
|
| } // namespace blink
|
|
|