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

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

Issue 1238083002: Oilpan: Move the EventListener hierarchy to Oilpan's heap (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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 8959bc296c1829795b5d6fd60e89e8953b809f46..69210459be3136d56ecece7e6cd5b5358b4aa62b 100644
--- a/Source/core/svg/animation/SVGSMILElement.h
+++ b/Source/core/svg/animation/SVGSMILElement.h
@@ -200,7 +200,7 @@ private:
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>);
+ void setEventListener(PassRefPtrWillBeRawPtr<ConditionEventListener>);
private:
Type m_type;
@@ -210,7 +210,7 @@ private:
SMILTime m_offset;
int m_repeat;
RefPtrWillBeMember<SVGSMILElement> m_syncBase;
- RefPtr<ConditionEventListener> m_eventListener;
+ RefPtrWillBeMember<ConditionEventListener> m_eventListener;
};
bool parseCondition(const String&, BeginOrEnd beginOrEnd);
void parseBeginOrEnd(const String&, BeginOrEnd beginOrEnd);

Powered by Google App Engine
This is Rietveld 408576698