| Index: third_party/WebKit/Source/core/paint/SVGMaskPainter.cpp
|
| diff --git a/third_party/WebKit/Source/core/paint/SVGMaskPainter.cpp b/third_party/WebKit/Source/core/paint/SVGMaskPainter.cpp
|
| index ded5b28fc8614086da3bcd3fedca63dfa132e65b..73e5b2a3f348ee3ff65a6470b5925341ffb49275 100644
|
| --- a/third_party/WebKit/Source/core/paint/SVGMaskPainter.cpp
|
| +++ b/third_party/WebKit/Source/core/paint/SVGMaskPainter.cpp
|
| @@ -18,7 +18,7 @@ namespace blink {
|
| bool SVGMaskPainter::prepareEffect(const LayoutObject& object,
|
| GraphicsContext& context) {
|
| ASSERT(m_mask.style());
|
| - ASSERT_WITH_SECURITY_IMPLICATION(!m_mask.needsLayout());
|
| + SECURITY_DCHECK(!m_mask.needsLayout());
|
|
|
| m_mask.clearInvalidationMask();
|
|
|
| @@ -35,7 +35,7 @@ bool SVGMaskPainter::prepareEffect(const LayoutObject& object,
|
| void SVGMaskPainter::finishEffect(const LayoutObject& object,
|
| GraphicsContext& context) {
|
| ASSERT(m_mask.style());
|
| - ASSERT_WITH_SECURITY_IMPLICATION(!m_mask.needsLayout());
|
| + SECURITY_DCHECK(!m_mask.needsLayout());
|
|
|
| FloatRect paintInvalidationRect =
|
| object.paintInvalidationRectInLocalSVGCoordinates();
|
|
|