| Index: third_party/WebKit/Source/core/layout/shapes/ShapeOutsideInfo.h
|
| diff --git a/third_party/WebKit/Source/core/layout/shapes/ShapeOutsideInfo.h b/third_party/WebKit/Source/core/layout/shapes/ShapeOutsideInfo.h
|
| index 6008e28bef195d39f187a940afbf155e3df7ccd4..1a7b77f23fcfbeb341ab49f3b6c80a47ab58c5dd 100644
|
| --- a/third_party/WebKit/Source/core/layout/shapes/ShapeOutsideInfo.h
|
| +++ b/third_party/WebKit/Source/core/layout/shapes/ShapeOutsideInfo.h
|
| @@ -68,15 +68,15 @@ class ShapeOutsideDeltas final {
|
|
|
| bool isValid() { return m_isValid; }
|
| LayoutUnit leftMarginBoxDelta() {
|
| - ASSERT(m_isValid);
|
| + DCHECK(m_isValid);
|
| return m_leftMarginBoxDelta;
|
| }
|
| LayoutUnit rightMarginBoxDelta() {
|
| - ASSERT(m_isValid);
|
| + DCHECK(m_isValid);
|
| return m_rightMarginBoxDelta;
|
| }
|
| bool lineOverlapsShape() {
|
| - ASSERT(m_isValid);
|
| + DCHECK(m_isValid);
|
| return m_lineOverlapsShape;
|
| }
|
|
|
|
|