| Index: third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceClipper.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceClipper.cpp b/third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceClipper.cpp
|
| index 3985c7628aaa347dcb060b235e98e7bb66431748..bcee4d256d18a1aa819874d3ded5a8469424359e 100644
|
| --- a/third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceClipper.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceClipper.cpp
|
| @@ -116,7 +116,7 @@ void LayoutSVGResourceClipper::removeAllClientsFromCache(
|
|
|
| void LayoutSVGResourceClipper::removeClientFromCache(LayoutObject* client,
|
| bool markForInvalidation) {
|
| - ASSERT(client);
|
| + DCHECK(client);
|
| markClientForInvalidation(client, markForInvalidation
|
| ? BoundariesInvalidation
|
| : ParentOnlyInvalidation);
|
| @@ -205,7 +205,7 @@ bool LayoutSVGResourceClipper::asPath(
|
| }
|
|
|
| sk_sp<const PaintRecord> LayoutSVGResourceClipper::createPaintRecord() {
|
| - ASSERT(frame());
|
| + DCHECK(frame());
|
| if (m_cachedPaintRecord)
|
| return m_cachedPaintRecord;
|
|
|
|
|