| Index: third_party/WebKit/Source/core/layout/LayoutTableRow.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutTableRow.cpp b/third_party/WebKit/Source/core/layout/LayoutTableRow.cpp
|
| index 3184ad5c5a4ef04f7f70463640b98b687cc92e81..decf5b332670c787379b72355f9eef2010926c75 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTableRow.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTableRow.cpp
|
| @@ -162,7 +162,7 @@ void LayoutTableRow::addChild(LayoutObject* child, LayoutObject* beforeChild) {
|
|
|
| LayoutTableCell* cell = toLayoutTableCell(child);
|
|
|
| - ASSERT(!beforeChild || beforeChild->isTableCell());
|
| + DCHECK(!beforeChild || beforeChild->isTableCell());
|
| LayoutTableBoxComponent::addChild(cell, beforeChild);
|
|
|
| // Generated content can result in us having a null section so make sure to
|
| @@ -187,7 +187,7 @@ void LayoutTableRow::addChild(LayoutObject* child, LayoutObject* beforeChild) {
|
| }
|
|
|
| void LayoutTableRow::layout() {
|
| - ASSERT(needsLayout());
|
| + DCHECK(needsLayout());
|
| LayoutAnalyzer::Scope analyzer(*this);
|
| bool paginated = view()->layoutState()->isPaginated();
|
|
|
|
|