| Index: third_party/WebKit/Source/core/style/ShapeValue.h
|
| diff --git a/third_party/WebKit/Source/core/style/ShapeValue.h b/third_party/WebKit/Source/core/style/ShapeValue.h
|
| index 9dc281e9e06b0430260fe0b306e718a92ab60803..94ada72c7f74190044683385928614a7917decfd 100644
|
| --- a/third_party/WebKit/Source/core/style/ShapeValue.h
|
| +++ b/third_party/WebKit/Source/core/style/ShapeValue.h
|
| @@ -73,7 +73,7 @@ class ShapeValue final : public GarbageCollectedFinalized<ShapeValue> {
|
| return image()->isGeneratedImage();
|
| }
|
| void setImage(StyleImage* image) {
|
| - ASSERT(type() == Image);
|
| + DCHECK_EQ(type(), Image);
|
| if (m_image != image)
|
| m_image = image;
|
| }
|
|
|