| Index: third_party/WebKit/Source/core/svg/SVGFEColorMatrixElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGFEColorMatrixElement.cpp b/third_party/WebKit/Source/core/svg/SVGFEColorMatrixElement.cpp
|
| index 7853de5169f1347e7ce1a84f531d09e3258c9a65..62c15ad316a5310fc9929836589e20d44ae8e937 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGFEColorMatrixElement.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGFEColorMatrixElement.cpp
|
| @@ -88,14 +88,14 @@ void SVGFEColorMatrixElement::svgAttributeChanged(const QualifiedName& attrName)
|
| SVGFilterPrimitiveStandardAttributes::svgAttributeChanged(attrName);
|
| }
|
|
|
| -PassRefPtrWillBeRawPtr<FilterEffect> SVGFEColorMatrixElement::build(SVGFilterBuilder* filterBuilder, Filter* filter)
|
| +RawPtr<FilterEffect> SVGFEColorMatrixElement::build(SVGFilterBuilder* filterBuilder, Filter* filter)
|
| {
|
| FilterEffect* input1 = filterBuilder->getEffectById(AtomicString(m_in1->currentValue()->value()));
|
| ASSERT(input1);
|
|
|
| ColorMatrixType filterType = m_type->currentValue()->enumValue();
|
| Vector<float> filterValues = m_values->currentValue()->toFloatVector();
|
| - RefPtrWillBeRawPtr<FilterEffect> effect = FEColorMatrix::create(filter, filterType, filterValues);
|
| + RawPtr<FilterEffect> effect = FEColorMatrix::create(filter, filterType, filterValues);
|
| effect->inputEffects().append(input1);
|
| return effect.release();
|
| }
|
|
|