| Index: third_party/WebKit/Source/platform/graphics/filters/FEDiffuseLighting.cpp
|
| diff --git a/third_party/WebKit/Source/platform/graphics/filters/FEDiffuseLighting.cpp b/third_party/WebKit/Source/platform/graphics/filters/FEDiffuseLighting.cpp
|
| index afc59d5813dbbc0ae104eac3979c9b613fbb014e..1251cabd7852e23d1222df1a1bc52a95324a50d8 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/filters/FEDiffuseLighting.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/filters/FEDiffuseLighting.cpp
|
| @@ -29,14 +29,14 @@ namespace blink {
|
|
|
| FEDiffuseLighting::FEDiffuseLighting(Filter* filter, const Color& lightingColor, float surfaceScale,
|
| float diffuseConstant, PassRefPtr<LightSource> lightSource)
|
| - : FELighting(filter, DiffuseLighting, lightingColor, surfaceScale, diffuseConstant, 0, 0, lightSource)
|
| + : FELighting(filter, DiffuseLighting, lightingColor, surfaceScale, diffuseConstant, 0, 0, std::move(lightSource))
|
| {
|
| }
|
|
|
| FEDiffuseLighting* FEDiffuseLighting::create(Filter* filter, const Color& lightingColor,
|
| float surfaceScale, float diffuseConstant, PassRefPtr<LightSource> lightSource)
|
| {
|
| - return new FEDiffuseLighting(filter, lightingColor, surfaceScale, diffuseConstant, lightSource);
|
| + return new FEDiffuseLighting(filter, lightingColor, surfaceScale, diffuseConstant, std::move(lightSource));
|
| }
|
|
|
| FEDiffuseLighting::~FEDiffuseLighting()
|
|
|