| Index: third_party/WebKit/Source/core/svg/SVGFEDiffuseLightingElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGFEDiffuseLightingElement.cpp b/third_party/WebKit/Source/core/svg/SVGFEDiffuseLightingElement.cpp
|
| index 1ff992cbfc6d59baf1da46fb214934cc027d4d69..1ccd419b4517b1fa1b94e96f8053f632f1cde6b4 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGFEDiffuseLightingElement.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGFEDiffuseLightingElement.cpp
|
| @@ -160,7 +160,7 @@ FilterEffect* SVGFEDiffuseLightingElement::build(
|
|
|
| FilterEffect* effect = FEDiffuseLighting::create(
|
| filter, color, m_surfaceScale->currentValue()->value(),
|
| - m_diffuseConstant->currentValue()->value(), lightSource.release());
|
| + m_diffuseConstant->currentValue()->value(), std::move(lightSource));
|
| effect->inputEffects().push_back(input1);
|
| return effect;
|
| }
|
|
|