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

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

Issue 2739893002: Store element reference for event-bases too (Closed)
Patch Set: Fix order Created 3 years, 9 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 773552cfad08a08bc7288375e4ca2240116d3b93..5973ced40fae88088127f93a27a3ce500614c32d 100644
--- a/third_party/WebKit/Source/core/svg/animation/SVGSMILElement.h
+++ b/third_party/WebKit/Source/core/svg/animation/SVGSMILElement.h
@@ -202,7 +202,7 @@ class CORE_EXPORT SVGSMILElement : public SVGElement, public SVGTests {
void connectSyncBase(SVGSMILElement&);
void disconnectSyncBase(SVGSMILElement&);
bool syncBaseEquals(SVGSMILElement& timedElement) const {
- return m_syncBase == timedElement;
+ return m_baseElement == timedElement;
}
void connectEventBase(SVGSMILElement&);
@@ -224,7 +224,7 @@ class CORE_EXPORT SVGSMILElement : public SVGElement, public SVGTests {
AtomicString m_name;
SMILTime m_offset;
int m_repeat;
- Member<SVGSMILElement> m_syncBase;
+ Member<SVGElement> m_baseElement;
Member<ConditionEventListener> m_eventListener;
};
bool parseCondition(const String&, BeginOrEnd beginOrEnd);
« 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