| Index: third_party/WebKit/Source/core/layout/LayoutFrameSet.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutFrameSet.cpp b/third_party/WebKit/Source/core/layout/LayoutFrameSet.cpp
|
| index c8ed15717c03227d6a481e9778456d18aa663409..fec65554ea813c9a3e8e29674798be52250169cd 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutFrameSet.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutFrameSet.cpp
|
| @@ -88,7 +88,7 @@ void LayoutFrameSet::layOutAxis(GridAxis& axis,
|
| }
|
|
|
| int gridLen = axis.m_sizes.size();
|
| - ASSERT(gridLen);
|
| + DCHECK(gridLen);
|
|
|
| int totalRelative = 0;
|
| int totalFixed = 0;
|
| @@ -354,7 +354,7 @@ FrameEdgeInfo LayoutFrameSet::edgeInfo() const {
|
| }
|
|
|
| void LayoutFrameSet::layout() {
|
| - ASSERT(needsLayout());
|
| + DCHECK(needsLayout());
|
|
|
| if (!parent()->isFrameSet() && !document().printing()) {
|
| setWidth(LayoutUnit(view()->viewWidth()));
|
|
|