Home
last modified time | relevance | path

Searched refs:RepeatEvent (Results 1 – 1 of 1) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/svg/animation/
DSVGSMILElement.cpp48 class RepeatEvent : public Event { class
50 static PassRefPtr<RepeatEvent> create(const AtomicString& type, int repeat) in create()
52 return adoptRef(new RepeatEvent(type, false, false, repeat)); in create()
55 ~RepeatEvent() { } in ~RepeatEvent()
59 RepeatEvent(const AtomicString& type, bool canBubble, bool cancelable, int repeat = -1) in RepeatEvent() function in WebCore::RepeatEvent
68 inline RepeatEvent* toRepeatEvent(Event* event) in toRepeatEvent()
71 return static_cast<RepeatEvent*>(event); in toRepeatEvent()
1282 dispatchEvent(RepeatEvent::create(eventType, repeatEventCount)); in dispatchPendingEvent()