| Index: third_party/WebKit/Source/core/layout/LayoutTableCell.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutTableCell.cpp b/third_party/WebKit/Source/core/layout/LayoutTableCell.cpp
|
| index 4146da633a4f574417f9255a7ca53b0a0e0af252..f10f6cedcf210fca9c0f990dd5e8dff9d81ee92b 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTableCell.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTableCell.cpp
|
| @@ -479,7 +479,7 @@ void LayoutTableCell::ensureIsReadyForPaintInvalidation() {
|
|
|
| void LayoutTableCell::styleDidChange(StyleDifference diff,
|
| const ComputedStyle* oldStyle) {
|
| - DCHECK_EQ(style()->display(), EDisplay::TableCell);
|
| + DCHECK_EQ(style()->display(), EDisplay::kTableCell);
|
|
|
| LayoutBlockFlow::styleDidChange(diff, oldStyle);
|
| setHasBoxDecorationBackground(true);
|
| @@ -1438,7 +1438,7 @@ LayoutTableCell* LayoutTableCell::createAnonymousWithParent(
|
| LayoutTableCell::createAnonymous(&parent->document());
|
| RefPtr<ComputedStyle> newStyle =
|
| ComputedStyle::createAnonymousStyleWithDisplay(parent->styleRef(),
|
| - EDisplay::TableCell);
|
| + EDisplay::kTableCell);
|
| newCell->setStyle(std::move(newStyle));
|
| return newCell;
|
| }
|
|
|