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); |