Index: Source/core/animation/css/CSSAnimations.h |
diff --git a/Source/core/animation/css/CSSAnimations.h b/Source/core/animation/css/CSSAnimations.h |
index a697045b020bf56b38a0f8f3b89ebe55e1802260..2d600c1c0994f53d551bec1efd01f7ed959e888a 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; |
@@ -105,6 +106,7 @@ public: |
} |
CSSPropertyID id; |
+ CSSPropertyID eventId; |
RawPtrWillBeMember<const AnimatableValue> from; |
RawPtrWillBeMember<const AnimatableValue> to; |
RefPtr<InertAnimation> animation; |