eventDelegate 49 Source/core/animation/Animation.cpp PassRefPtr<Animation> Animation::create(PassRefPtr<Element> target, PassRefPtrWillBeRawPtr<AnimationEffect> effect, const Timing& timing, Priority priority, PassOwnPtr<EventDelegate> eventDelegate) eventDelegate 51 Source/core/animation/Animation.cpp return adoptRef(new Animation(target, effect, timing, priority, eventDelegate)); eventDelegate 88 Source/core/animation/Animation.cpp Animation::Animation(PassRefPtr<Element> target, PassRefPtrWillBeRawPtr<AnimationEffect> effect, const Timing& timing, Priority priority, PassOwnPtr<EventDelegate> eventDelegate) eventDelegate 89 Source/core/animation/Animation.cpp : TimedItem(timing, eventDelegate) eventDelegate 53 Source/core/animation/TimedItem.cpp TimedItem::TimedItem(const Timing& timing, PassOwnPtr<EventDelegate> eventDelegate) eventDelegate 58 Source/core/animation/TimedItem.cpp , m_eventDelegate(eventDelegate) eventDelegate 102 Source/core/animation/TimedItemTest.cpp TestTimedItem(const Timing& specified, TestTimedItemEventDelegate* eventDelegate) eventDelegate 103 Source/core/animation/TimedItemTest.cpp : TimedItem(specified, adoptPtr(eventDelegate)) eventDelegate 104 Source/core/animation/TimedItemTest.cpp , m_eventDelegate(eventDelegate) eventDelegate 728 Source/core/animation/TimedItemTest.cpp EXPECT_TRUE(timedItem->eventDelegate()->eventTriggered()); eventDelegate 732 Source/core/animation/TimedItemTest.cpp EXPECT_FALSE(timedItem->eventDelegate()->eventTriggered()); eventDelegate 736 Source/core/animation/TimedItemTest.cpp EXPECT_TRUE(timedItem->eventDelegate()->eventTriggered()); eventDelegate 737 Source/core/animation/TimedItemTest.cpp EXPECT_TRUE(timedItem->eventDelegate()->phaseChanged()); eventDelegate 738 Source/core/animation/TimedItemTest.cpp EXPECT_TRUE(timedItem->eventDelegate()->iterationChanged()); eventDelegate 741 Source/core/animation/TimedItemTest.cpp EXPECT_FALSE(timedItem->eventDelegate()->eventTriggered()); eventDelegate 745 Source/core/animation/TimedItemTest.cpp EXPECT_TRUE(timedItem->eventDelegate()->eventTriggered()); eventDelegate 746 Source/core/animation/TimedItemTest.cpp EXPECT_FALSE(timedItem->eventDelegate()->phaseChanged()); eventDelegate 747 Source/core/animation/TimedItemTest.cpp EXPECT_TRUE(timedItem->eventDelegate()->iterationChanged()); eventDelegate 750 Source/core/animation/TimedItemTest.cpp EXPECT_FALSE(timedItem->eventDelegate()->eventTriggered()); eventDelegate 754 Source/core/animation/TimedItemTest.cpp EXPECT_TRUE(timedItem->eventDelegate()->eventTriggered()); eventDelegate 755 Source/core/animation/TimedItemTest.cpp EXPECT_TRUE(timedItem->eventDelegate()->phaseChanged()); eventDelegate 756 Source/core/animation/TimedItemTest.cpp EXPECT_FALSE(timedItem->eventDelegate()->iterationChanged()); eventDelegate 759 Source/core/animation/TimedItemTest.cpp EXPECT_FALSE(timedItem->eventDelegate()->eventTriggered()); eventDelegate 390 Source/core/animation/css/CSSAnimations.cpp OwnPtr<AnimationEventDelegate> eventDelegate = adoptPtr(new AnimationEventDelegate(element, iter->name)); eventDelegate 391 Source/core/animation/css/CSSAnimations.cpp RefPtr<Animation> animation = Animation::create(element, inertAnimation->effect(), inertAnimation->specifiedTiming(), Animation::DefaultPriority, eventDelegate.release()); eventDelegate 425 Source/core/animation/css/CSSAnimations.cpp OwnPtr<TransitionEventDelegate> eventDelegate = adoptPtr(new TransitionEventDelegate(element, newTransition.eventId)); eventDelegate 446 Source/core/animation/css/CSSAnimations.cpp RefPtr<Animation> transition = Animation::create(element, effect, inertAnimation->specifiedTiming(), Animation::TransitionPriority, eventDelegate.release());