| 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 6bbaef75aa9634e1c64829caa54a67eaeff5c93b..37e6f80b496e190486c9723a42f6af7b95bfb3f7 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();
|
| }
|
|
|