Chromium Code Reviews| 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..03ff2bb871e175b317c9eb53be8843b2855e874b 100644 |
| --- a/third_party/WebKit/Source/core/svg/SVGFECompositeElement.cpp |
| +++ b/third_party/WebKit/Source/core/svg/SVGFECompositeElement.cpp |
| @@ -132,7 +132,7 @@ FilterEffect* SVGFECompositeElement::build(SVGFilterBuilder* filterBuilder, |
| AtomicString(m_in1->currentValue()->value())); |
| FilterEffect* input2 = filterBuilder->getEffectById( |
| AtomicString(m_in2->currentValue()->value())); |
| - ASSERT(input1 && input2); |
| + DCHECK(input1 && input2); |
|
tkent
2017/03/14 22:33:14
Split it to two DCHECKs.
DCHECK(input1);
DCHEC
mrunal
2017/03/14 23:52:14
Done.
|
| FilterEffect* effect = FEComposite::create( |
| filter, m_svgOperator->currentValue()->enumValue(), |