| Index: third_party/WebKit/Source/core/svg/animation/SVGSMILElement.h
|
| diff --git a/third_party/WebKit/Source/core/svg/animation/SVGSMILElement.h b/third_party/WebKit/Source/core/svg/animation/SVGSMILElement.h
|
| index 9caca14978b3f269354f9311e1302d43010f5363..a4515f8ec1807999f45e4cd0e996216a0e8091b8 100644
|
| --- a/third_party/WebKit/Source/core/svg/animation/SVGSMILElement.h
|
| +++ b/third_party/WebKit/Source/core/svg/animation/SVGSMILElement.h
|
| @@ -40,9 +40,6 @@ class ConditionEventListener;
|
| class SMILTimeContainer;
|
| class SVGSMILElement;
|
|
|
| -template<typename T> class EventSender;
|
| -using SMILEventSender = EventSender<SVGSMILElement>;
|
| -
|
| // This class implements SMIL interval timing model as needed for SVG animation.
|
| class CORE_EXPORT SVGSMILElement : public SVGElement, public SVGTests {
|
| USING_GARBAGE_COLLECTED_MIXIN(SVGSMILElement);
|
| @@ -120,8 +117,9 @@ public:
|
| void connectSyncBaseConditions();
|
| void connectEventBaseConditions();
|
|
|
| - void dispatchPendingEvent(SMILEventSender*);
|
| - void dispatchRepeatEvents(unsigned);
|
| + void scheduleEvent(const AtomicString& eventType);
|
| + void scheduleRepeatEvents(unsigned);
|
| + void dispatchPendingEvent(const AtomicString& eventType);
|
|
|
| virtual bool isSVGDiscardElement() const { return false; }
|
|
|
|
|