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

Unified Diff: Source/core/svg/SVGFEImageElement.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/SVGFEImageElement.h ('k') | Source/core/svg/SVGFELightElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGFEImageElement.cpp
diff --git a/Source/core/svg/SVGFEImageElement.cpp b/Source/core/svg/SVGFEImageElement.cpp
index 828c935360e73916e91881fdf61b7426e0c8dbe5..1c55feb79b8c4d7ed3492cfb9b3f3920b266fb29 100644
--- a/Source/core/svg/SVGFEImageElement.cpp
+++ b/Source/core/svg/SVGFEImageElement.cpp
@@ -55,6 +55,13 @@ SVGFEImageElement::~SVGFEImageElement()
#endif
}
+void SVGFEImageElement::trace(Visitor* visitor)
+{
+ visitor->trace(m_preserveAspectRatio);
+ SVGFilterPrimitiveStandardAttributes::trace(visitor);
+ SVGURIReference::trace(visitor);
+}
+
bool SVGFEImageElement::currentFrameHasSingleSecurityOrigin() const
{
if (m_cachedImage && m_cachedImage->image())
@@ -172,7 +179,7 @@ void SVGFEImageElement::notifyFinished(Resource*)
markForLayoutAndParentResourceInvalidation(renderer);
}
-PassRefPtr<FilterEffect> SVGFEImageElement::build(SVGFilterBuilder*, Filter* filter)
+PassRefPtrWillBeRawPtr<FilterEffect> SVGFEImageElement::build(SVGFilterBuilder*, Filter* filter)
{
if (m_cachedImage)
return FEImage::createWithImage(filter, m_cachedImage->imageForRenderer(renderer()), m_preserveAspectRatio->currentValue());
« no previous file with comments | « Source/core/svg/SVGFEImageElement.h ('k') | Source/core/svg/SVGFELightElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698