Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5)

Unified Diff: third_party/WebKit/Source/core/svg/animation/SVGSMILElement.h

Issue 2096253002: Remove EventSender from SVGSMILElement (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: include fix Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/svg/animation/SVGSMILElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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; }
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/svg/animation/SVGSMILElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698