| Index: third_party/WebKit/Source/core/svg/SVGFESpecularLightingElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGFESpecularLightingElement.cpp b/third_party/WebKit/Source/core/svg/SVGFESpecularLightingElement.cpp
|
| index f9fe68ec4eae79fbdf9f3a85f998ad2bc24b9509..fc682e8abd566a9cdd4075af59d085ef65eff23d 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGFESpecularLightingElement.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGFESpecularLightingElement.cpp
|
| @@ -124,7 +124,7 @@ void SVGFESpecularLightingElement::lightElementAttributeChanged(const SVGFELight
|
| primitiveAttributeChanged(attrName);
|
| }
|
|
|
| -PassRefPtrWillBeRawPtr<FilterEffect> SVGFESpecularLightingElement::build(SVGFilterBuilder* filterBuilder, Filter* filter)
|
| +RawPtr<FilterEffect> SVGFESpecularLightingElement::build(SVGFilterBuilder* filterBuilder, Filter* filter)
|
| {
|
| FilterEffect* input1 = filterBuilder->getEffectById(AtomicString(m_in1->currentValue()->value()));
|
| ASSERT(input1);
|
| @@ -139,7 +139,7 @@ PassRefPtrWillBeRawPtr<FilterEffect> SVGFESpecularLightingElement::build(SVGFilt
|
| const SVGFELightElement* lightNode = SVGFELightElement::findLightElement(*this);
|
| RefPtr<LightSource> lightSource = lightNode ? lightNode->lightSource(filter) : nullptr;
|
|
|
| - RefPtrWillBeRawPtr<FilterEffect> effect = FESpecularLighting::create(filter,
|
| + RawPtr<FilterEffect> effect = FESpecularLighting::create(filter,
|
| color,
|
| m_surfaceScale->currentValue()->value(),
|
| m_specularConstant->currentValue()->value(),
|
|
|