| Index: Source/core/animation/css/CSSAnimations.h
|
| diff --git a/Source/core/animation/css/CSSAnimations.h b/Source/core/animation/css/CSSAnimations.h
|
| index fc6afb7ce22fa75bb010ca8671f62fafc80a3023..ad538ae1561b50ba89c23c5aa588254c734f23f2 100644
|
| --- a/Source/core/animation/css/CSSAnimations.h
|
| +++ b/Source/core/animation/css/CSSAnimations.h
|
| @@ -73,10 +73,11 @@ public:
|
| m_animationsWithPauseToggled.append(name);
|
| }
|
|
|
| - void startTransition(CSSPropertyID id, const AnimatableValue* from, const AnimatableValue* to, PassRefPtr<InertAnimation> animation)
|
| + void startTransition(CSSPropertyID id, CSSPropertyID eventId, const AnimatableValue* from, const AnimatableValue* to, PassRefPtr<InertAnimation> animation)
|
| {
|
| NewTransition newTransition;
|
| newTransition.id = id;
|
| + newTransition.eventId = eventId;
|
| newTransition.from = from;
|
| newTransition.to = to;
|
| newTransition.animation = animation;
|
| @@ -104,6 +105,7 @@ public:
|
| }
|
|
|
| CSSPropertyID id;
|
| + CSSPropertyID eventId;
|
| RawPtrWillBeMember<const AnimatableValue> from;
|
| RawPtrWillBeMember<const AnimatableValue> to;
|
| RefPtr<InertAnimation> animation;
|
|
|