| 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 dbf42f3a8f7582731307a0769649f74524d9eb0e..ab309ebe31760ca89dc9ce4c7ce921193b32f409 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGFEDiffuseLightingElement.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGFEDiffuseLightingElement.cpp
|
| @@ -118,7 +118,7 @@ void SVGFEDiffuseLightingElement::lightElementAttributeChanged(const SVGFELightE
|
| primitiveAttributeChanged(attrName);
|
| }
|
|
|
| -PassRefPtrWillBeRawPtr<FilterEffect> SVGFEDiffuseLightingElement::build(SVGFilterBuilder* filterBuilder, Filter* filter)
|
| +RawPtr<FilterEffect> SVGFEDiffuseLightingElement::build(SVGFilterBuilder* filterBuilder, Filter* filter)
|
| {
|
| FilterEffect* input1 = filterBuilder->getEffectById(AtomicString(m_in1->currentValue()->value()));
|
| ASSERT(input1);
|
| @@ -133,7 +133,7 @@ PassRefPtrWillBeRawPtr<FilterEffect> SVGFEDiffuseLightingElement::build(SVGFilte
|
| const SVGFELightElement* lightNode = SVGFELightElement::findLightElement(*this);
|
| RefPtr<LightSource> lightSource = lightNode ? lightNode->lightSource(filter) : nullptr;
|
|
|
| - RefPtrWillBeRawPtr<FilterEffect> effect = FEDiffuseLighting::create(filter,
|
| + RawPtr<FilterEffect> effect = FEDiffuseLighting::create(filter,
|
| color,
|
| m_surfaceScale->currentValue()->value(),
|
| m_diffuseConstant->currentValue()->value(),
|
|
|