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

Unified Diff: Source/core/svg/SVGStaticStringList.cpp

Issue 678163002: Oilpan: move SVG property hierarchy to the heap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased upto r185213 Created 6 years, 1 month 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 | « Source/core/svg/SVGStaticStringList.h ('k') | Source/core/svg/SVGStopElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGStaticStringList.cpp
diff --git a/Source/core/svg/SVGStaticStringList.cpp b/Source/core/svg/SVGStaticStringList.cpp
index cf89dd0563a98965b3e023d6b4e3f874ff5a7847..4b49f83c5ddb1e9ca9d451199317799e170a540c 100644
--- a/Source/core/svg/SVGStaticStringList.cpp
+++ b/Source/core/svg/SVGStaticStringList.cpp
@@ -31,6 +31,8 @@
#include "config.h"
#include "core/svg/SVGStaticStringList.h"
+#include "core/svg/SVGElement.h"
+
namespace blink {
SVGStaticStringList::SVGStaticStringList(SVGElement* contextElement, const QualifiedName& attributeName)
@@ -44,6 +46,13 @@ SVGStaticStringList::~SVGStaticStringList()
{
}
+void SVGStaticStringList::trace(Visitor* visitor)
+{
+ visitor->trace(m_value);
+ visitor->trace(m_tearOff);
+ SVGAnimatedPropertyBase::trace(visitor);
+}
+
SVGPropertyBase* SVGStaticStringList::currentValueBase()
{
return m_value.get();
@@ -54,13 +63,13 @@ bool SVGStaticStringList::isAnimating() const
return false;
}
-PassRefPtr<SVGPropertyBase> SVGStaticStringList::createAnimatedValue()
+PassRefPtrWillBeRawPtr<SVGPropertyBase> SVGStaticStringList::createAnimatedValue()
{
ASSERT_NOT_REACHED();
return nullptr;
}
-void SVGStaticStringList::setAnimatedValue(PassRefPtr<SVGPropertyBase>)
+void SVGStaticStringList::setAnimatedValue(PassRefPtrWillBeRawPtr<SVGPropertyBase>)
{
ASSERT_NOT_REACHED();
}
« no previous file with comments | « Source/core/svg/SVGStaticStringList.h ('k') | Source/core/svg/SVGStopElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698