| Index: third_party/WebKit/Source/core/svg/SVGFEDisplacementMapElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGFEDisplacementMapElement.cpp b/third_party/WebKit/Source/core/svg/SVGFEDisplacementMapElement.cpp
|
| index adc96648229b96d1dfc265279379c1ead4fee211..d7be1f90d73087c54ec6168f953dead298da0226 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGFEDisplacementMapElement.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGFEDisplacementMapElement.cpp
|
| @@ -115,7 +115,8 @@ FilterEffect* SVGFEDisplacementMapElement::build(
|
| AtomicString(m_in1->currentValue()->value()));
|
| FilterEffect* input2 = filterBuilder->getEffectById(
|
| AtomicString(m_in2->currentValue()->value()));
|
| - ASSERT(input1 && input2);
|
| + DCHECK(input1);
|
| + DCHECK(input2);
|
|
|
| FilterEffect* effect = FEDisplacementMap::create(
|
| filter, m_xChannelSelector->currentValue()->enumValue(),
|
|
|