| Index: third_party/WebKit/Source/platform/graphics/paint/ClipDisplayItem.h
|
| diff --git a/third_party/WebKit/Source/platform/graphics/paint/ClipDisplayItem.h b/third_party/WebKit/Source/platform/graphics/paint/ClipDisplayItem.h
|
| index 74883656f480496f49aba4421668058b26ef4df9..7cd25283395a94276213c27b903b41278216fe30 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/paint/ClipDisplayItem.h
|
| +++ b/third_party/WebKit/Source/platform/graphics/paint/ClipDisplayItem.h
|
| @@ -21,7 +21,7 @@ class PLATFORM_EXPORT ClipDisplayItem final : public PairedBeginDisplayItem {
|
| const IntRect& clip_rect)
|
| : PairedBeginDisplayItem(client, type, sizeof(*this)),
|
| clip_rect_(clip_rect) {
|
| - ASSERT(IsClipType(type));
|
| + DCHECK(IsClipType(type));
|
| }
|
|
|
| ClipDisplayItem(const DisplayItemClient& client,
|
| @@ -56,7 +56,7 @@ class PLATFORM_EXPORT EndClipDisplayItem final : public PairedEndDisplayItem {
|
| public:
|
| EndClipDisplayItem(const DisplayItemClient& client, Type type)
|
| : PairedEndDisplayItem(client, type, sizeof(*this)) {
|
| - ASSERT(IsEndClipType(type));
|
| + DCHECK(IsEndClipType(type));
|
| }
|
|
|
| void Replay(GraphicsContext&) const override;
|
|
|