| Index: third_party/WebKit/Source/core/svg/SVGFEMorphologyElement.cpp
 | 
| diff --git a/third_party/WebKit/Source/core/svg/SVGFEMorphologyElement.cpp b/third_party/WebKit/Source/core/svg/SVGFEMorphologyElement.cpp
 | 
| index db323c8d3ca9476a81abec05150d9c40fcda9a58..8073cc3df106b6365de9dd28b1dfee4e3cc5b762 100644
 | 
| --- a/third_party/WebKit/Source/core/svg/SVGFEMorphologyElement.cpp
 | 
| +++ b/third_party/WebKit/Source/core/svg/SVGFEMorphologyElement.cpp
 | 
| @@ -90,7 +90,7 @@ void SVGFEMorphologyElement::svgAttributeChanged(const QualifiedName& attrName)
 | 
|      SVGFilterPrimitiveStandardAttributes::svgAttributeChanged(attrName);
 | 
|  }
 | 
|  
 | 
| -PassRefPtrWillBeRawPtr<FilterEffect> SVGFEMorphologyElement::build(SVGFilterBuilder* filterBuilder, Filter* filter)
 | 
| +RawPtr<FilterEffect> SVGFEMorphologyElement::build(SVGFilterBuilder* filterBuilder, Filter* filter)
 | 
|  {
 | 
|      FilterEffect* input1 = filterBuilder->getEffectById(AtomicString(m_in1->currentValue()->value()));
 | 
|  
 | 
| @@ -104,7 +104,7 @@ PassRefPtrWillBeRawPtr<FilterEffect> SVGFEMorphologyElement::build(SVGFilterBuil
 | 
|      // (This is handled by FEMorphology)
 | 
|      float xRadius = radiusX()->currentValue()->value();
 | 
|      float yRadius = radiusY()->currentValue()->value();
 | 
| -    RefPtrWillBeRawPtr<FilterEffect> effect = FEMorphology::create(filter, m_svgOperator->currentValue()->enumValue(), xRadius, yRadius);
 | 
| +    RawPtr<FilterEffect> effect = FEMorphology::create(filter, m_svgOperator->currentValue()->enumValue(), xRadius, yRadius);
 | 
|      effect->inputEffects().append(input1);
 | 
|      return effect.release();
 | 
|  }
 | 
| 
 |