| Index: third_party/WebKit/Source/core/svg/SVGFECompositeElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGFECompositeElement.cpp b/third_party/WebKit/Source/core/svg/SVGFECompositeElement.cpp
|
| index 619a7b58f7d53c6d6705945cd7aaf8aeef006b24..c88f2155efd77e588ef9684e1e65e7a53f9152e7 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGFECompositeElement.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGFECompositeElement.cpp
|
| @@ -132,7 +132,8 @@ FilterEffect* SVGFECompositeElement::build(SVGFilterBuilder* filterBuilder,
|
| AtomicString(m_in1->currentValue()->value()));
|
| FilterEffect* input2 = filterBuilder->getEffectById(
|
| AtomicString(m_in2->currentValue()->value()));
|
| - ASSERT(input1 && input2);
|
| + DCHECK(input1);
|
| + DCHECK(input2);
|
|
|
| FilterEffect* effect = FEComposite::create(
|
| filter, m_svgOperator->currentValue()->enumValue(),
|
|
|