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

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

Issue 305783004: Prepare SVGSMILElement for oilpan (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: strong refs Created 6 years, 7 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
Index: Source/core/svg/animation/SVGSMILElement.h
diff --git a/Source/core/svg/animation/SVGSMILElement.h b/Source/core/svg/animation/SVGSMILElement.h
index 53ebec950bebd863e9a9c4dde21b276e9636d607..f995d1950e7a0cdc49a78ebb8a7714cbf131065f 100644
--- a/Source/core/svg/animation/SVGSMILElement.h
+++ b/Source/core/svg/animation/SVGSMILElement.h
@@ -186,8 +186,8 @@ private:
String name() const { return m_name; }
SMILTime offset() const { return m_offset; }
int repeat() const { return m_repeat; }
- Element* syncBase() const { return m_syncBase.get(); }
- void setSyncBase(Element* element) { m_syncBase = element; }
+ SVGSMILElement* syncBase() const { return m_syncBase.get(); }
+ void setSyncBase(SVGSMILElement* element) { m_syncBase = element; }
ConditionEventListener* eventListener() const { return m_eventListener.get(); }
void setEventListener(PassRefPtr<ConditionEventListener>);
@@ -198,7 +198,7 @@ private:
String m_name;
SMILTime m_offset;
int m_repeat;
- RefPtrWillBeMember<Element> m_syncBase;
+ RefPtrWillBeMember<SVGSMILElement> m_syncBase;
RefPtr<ConditionEventListener> m_eventListener;
};
bool parseCondition(const String&, BeginOrEnd beginOrEnd);
« no previous file with comments | « no previous file | Source/core/svg/animation/SVGSMILElement.cpp » ('j') | Source/core/svg/animation/SVGSMILElement.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698