| Index: third_party/WebKit/Source/core/animation/css/CSSAnimations.h
|
| diff --git a/third_party/WebKit/Source/core/animation/css/CSSAnimations.h b/third_party/WebKit/Source/core/animation/css/CSSAnimations.h
|
| index a901524ebd45663d0e0752fc90760646bcbd1bee..f47c4b2122a573913ce26834340069ff227e10f3 100644
|
| --- a/third_party/WebKit/Source/core/animation/css/CSSAnimations.h
|
| +++ b/third_party/WebKit/Source/core/animation/css/CSSAnimations.h
|
| @@ -144,9 +144,9 @@ class CSSAnimations final {
|
| DEFINE_INLINE_TRACE() { visitor->Trace(animation); }
|
|
|
| Member<Animation> animation;
|
| - RefPtr<AnimatableValue> from;
|
| - RefPtr<AnimatableValue> to;
|
| - RefPtr<AnimatableValue> reversing_adjusted_start_value;
|
| + RefPtr<const ComputedStyle> from;
|
| + RefPtr<const ComputedStyle> to;
|
| + RefPtr<const ComputedStyle> reversing_adjusted_start_value;
|
| double reversing_shortening_factor;
|
| };
|
|
|
| @@ -165,6 +165,7 @@ class CSSAnimations final {
|
| Member<const Element> animating_element;
|
| const ComputedStyle& old_style;
|
| const ComputedStyle& style;
|
| + RefPtr<const ComputedStyle> cloned_style;
|
| const TransitionMap* active_transitions;
|
| HashSet<PropertyHandle>& listed_properties;
|
| const CSSTransitionData& transition_data;
|
|
|