| Index: third_party/WebKit/Source/core/animation/css/CSSAnimationUpdate.h
|
| diff --git a/third_party/WebKit/Source/core/animation/css/CSSAnimationUpdate.h b/third_party/WebKit/Source/core/animation/css/CSSAnimationUpdate.h
|
| index 7c0ef5bf6f792cff8465156bd5816e9866af5fac..fe0f2e8f9b941b9f8bdb2f2a56a4db79e26d39da 100644
|
| --- a/third_party/WebKit/Source/core/animation/css/CSSAnimationUpdate.h
|
| +++ b/third_party/WebKit/Source/core/animation/css/CSSAnimationUpdate.h
|
| @@ -167,9 +167,9 @@ class CSSAnimationUpdate final {
|
|
|
| void StartTransition(
|
| const PropertyHandle& property,
|
| - RefPtr<AnimatableValue> from,
|
| - RefPtr<AnimatableValue> to,
|
| - PassRefPtr<AnimatableValue> reversing_adjusted_start_value,
|
| + RefPtr<const ComputedStyle> from,
|
| + RefPtr<const ComputedStyle> to,
|
| + PassRefPtr<const ComputedStyle> reversing_adjusted_start_value,
|
| double reversing_shortening_factor,
|
| const InertEffect& effect) {
|
| NewTransition new_transition;
|
| @@ -221,9 +221,9 @@ class CSSAnimationUpdate final {
|
| DEFINE_INLINE_TRACE() { visitor->Trace(effect); }
|
|
|
| PropertyHandle property = HashTraits<blink::PropertyHandle>::EmptyValue();
|
| - 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;
|
| Member<const InertEffect> effect;
|
| };
|
|
|