| Index: Source/core/animation/css/CSSAnimations.h
|
| diff --git a/Source/core/animation/css/CSSAnimations.h b/Source/core/animation/css/CSSAnimations.h
|
| index e730fc11a58179663f6765d0d5787533ba33040b..5890a08fa59ad52b39d0dcfc04fc3d883a8e67ad 100644
|
| --- a/Source/core/animation/css/CSSAnimations.h
|
| +++ b/Source/core/animation/css/CSSAnimations.h
|
| @@ -74,10 +74,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;
|
| @@ -97,6 +98,7 @@ public:
|
|
|
| struct NewTransition {
|
| CSSPropertyID id;
|
| + CSSPropertyID eventId;
|
| const AnimatableValue* from;
|
| const AnimatableValue* to;
|
| RefPtr<InertAnimation> animation;
|
|
|