| Index: Source/core/animation/css/CSSAnimations.h
|
| diff --git a/Source/core/animation/css/CSSAnimations.h b/Source/core/animation/css/CSSAnimations.h
|
| index bd3c4e9517c27e96e89f6b68d3f20b57bce585ed..2f04c41d213d22213a4f2894a5b93dca5179e5ed 100644
|
| --- a/Source/core/animation/css/CSSAnimations.h
|
| +++ b/Source/core/animation/css/CSSAnimations.h
|
| @@ -80,14 +80,14 @@ public:
|
| private:
|
| typedef HashMap<StringImpl*, RefPtr<Player> > AnimationMap;
|
| AnimationMap m_animations;
|
| - class EventDelegate FINAL : public TimedItemEventDelegate {
|
| + class EventDelegate FINAL : public TimedItem::EventDelegate {
|
| public:
|
| EventDelegate(Element* target, const AtomicString& name)
|
| : m_target(target)
|
| , m_name(name)
|
| {
|
| }
|
| - virtual void onEventCondition(bool wasInPlay, bool isInPlay, double previousIteration, double currentIteration) OVERRIDE;
|
| + virtual void onEventCondition(bool isFirstSample, TimedItem::Phase previousPhase, TimedItem::Phase currentPhase, double previousIteration, double currentIteration) OVERRIDE;
|
| private:
|
| void maybeDispatch(Document::ListenerType, AtomicString& eventName, double elapsedTime);
|
| Element* m_target;
|
|
|