| Index: third_party/WebKit/Source/platform/graphics/paint/ScrollDisplayItem.h
|
| diff --git a/third_party/WebKit/Source/platform/graphics/paint/ScrollDisplayItem.h b/third_party/WebKit/Source/platform/graphics/paint/ScrollDisplayItem.h
|
| index 7871b1d4fe2dd8b81b7773a15569351789d90955..6fa4dbdc07c988a3761b37c077301c18d4903fd2 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/paint/ScrollDisplayItem.h
|
| +++ b/third_party/WebKit/Source/platform/graphics/paint/ScrollDisplayItem.h
|
| @@ -19,7 +19,7 @@ class PLATFORM_EXPORT BeginScrollDisplayItem final
|
| const IntSize& currentOffset)
|
| : PairedBeginDisplayItem(client, type, sizeof(*this)),
|
| m_currentOffset(currentOffset) {
|
| - ASSERT(isScrollType(type));
|
| + DCHECK(isScrollType(type));
|
| }
|
|
|
| void replay(GraphicsContext&) const override;
|
| @@ -46,7 +46,7 @@ class PLATFORM_EXPORT EndScrollDisplayItem final : public PairedEndDisplayItem {
|
| public:
|
| EndScrollDisplayItem(const DisplayItemClient& client, Type type)
|
| : PairedEndDisplayItem(client, type, sizeof(*this)) {
|
| - ASSERT(isEndScrollType(type));
|
| + DCHECK(isEndScrollType(type));
|
| }
|
|
|
| void replay(GraphicsContext&) const override;
|
|
|