Index: third_party/WebKit/Source/core/style/ClipPathOperation.h |
diff --git a/third_party/WebKit/Source/core/style/ClipPathOperation.h b/third_party/WebKit/Source/core/style/ClipPathOperation.h |
index 07f386f230981e886a445a43fbac63c19257a8b1..9873857f394152266fcf22894f0296695694de68 100644 |
--- a/third_party/WebKit/Source/core/style/ClipPathOperation.h |
+++ b/third_party/WebKit/Source/core/style/ClipPathOperation.h |
@@ -104,7 +104,7 @@ class ShapeClipPathOperation final : public ClipPathOperation { |
const BasicShape* basicShape() const { return m_shape.get(); } |
bool isValid() const { return m_shape.get(); } |
const Path& path(const FloatRect& boundingRect) { |
- ASSERT(m_shape); |
+ DCHECK(m_shape); |
m_path.reset(); |
m_path = WTF::wrapUnique(new Path); |
m_shape->path(*m_path, boundingRect); |