| Index: third_party/WebKit/Source/platform/graphics/paint/ForeignLayerDisplayItem.cpp
|
| diff --git a/third_party/WebKit/Source/platform/graphics/paint/ForeignLayerDisplayItem.cpp b/third_party/WebKit/Source/platform/graphics/paint/ForeignLayerDisplayItem.cpp
|
| index 4a397351aceebb3aa72b8351d79c31290c3c78db..d1a8992bd4bc6a1f763cacd87d0e0219f306f208 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/paint/ForeignLayerDisplayItem.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/paint/ForeignLayerDisplayItem.cpp
|
| @@ -23,21 +23,21 @@ ForeignLayerDisplayItem::ForeignLayerDisplayItem(
|
| m_layer(std::move(layer)),
|
| m_location(location),
|
| m_bounds(bounds) {
|
| - ASSERT(RuntimeEnabledFeatures::slimmingPaintV2Enabled());
|
| - ASSERT(isForeignLayerType(type));
|
| - ASSERT(m_layer);
|
| + DCHECK(RuntimeEnabledFeatures::slimmingPaintV2Enabled());
|
| + DCHECK(isForeignLayerType(type));
|
| + DCHECK(m_layer);
|
| }
|
|
|
| ForeignLayerDisplayItem::~ForeignLayerDisplayItem() {}
|
|
|
| void ForeignLayerDisplayItem::replay(GraphicsContext&) const {
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| }
|
|
|
| void ForeignLayerDisplayItem::appendToWebDisplayItemList(
|
| const IntRect&,
|
| WebDisplayItemList*) const {
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| }
|
|
|
| bool ForeignLayerDisplayItem::drawsContent() const {
|
|
|