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

Unified Diff: Source/platform/graphics/filters/FEDiffuseLighting.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
Index: Source/platform/graphics/filters/FEDiffuseLighting.cpp
diff --git a/Source/platform/graphics/filters/FEDiffuseLighting.cpp b/Source/platform/graphics/filters/FEDiffuseLighting.cpp
index c3f28f0d0f868863e001d81cc0f6564d8c45b014..ba154b97f0f5091902d01f758c160e8821ad2b91 100644
--- a/Source/platform/graphics/filters/FEDiffuseLighting.cpp
+++ b/Source/platform/graphics/filters/FEDiffuseLighting.cpp
@@ -34,11 +34,11 @@ FEDiffuseLighting::FEDiffuseLighting(Filter* filter, const Color& lightingColor,
{
}
-PassRefPtr<FEDiffuseLighting> FEDiffuseLighting::create(Filter* filter, const Color& lightingColor,
+PassRefPtrWillBeRawPtr<FEDiffuseLighting> FEDiffuseLighting::create(Filter* filter, const Color& lightingColor,
float surfaceScale, float diffuseConstant, float kernelUnitLengthX,
float kernelUnitLengthY, PassRefPtr<LightSource> lightSource)
{
- return adoptRef(new FEDiffuseLighting(filter, lightingColor, surfaceScale, diffuseConstant, kernelUnitLengthX, kernelUnitLengthY, lightSource));
+ return adoptRefWillBeNoop(new FEDiffuseLighting(filter, lightingColor, surfaceScale, diffuseConstant, kernelUnitLengthX, kernelUnitLengthY, lightSource));
}
FEDiffuseLighting::~FEDiffuseLighting()
« no previous file with comments | « Source/platform/graphics/filters/FEDiffuseLighting.h ('k') | Source/platform/graphics/filters/FEDisplacementMap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698