| Index: Source/core/layout/LayoutTableRow.cpp
|
| diff --git a/Source/core/layout/LayoutTableRow.cpp b/Source/core/layout/LayoutTableRow.cpp
|
| index 641d23348bcd9c0815038cfe7fce69241d12d091..02da3f68be8f57b955db4f0565ff26dfbeeaafca 100644
|
| --- a/Source/core/layout/LayoutTableRow.cpp
|
| +++ b/Source/core/layout/LayoutTableRow.cpp
|
| @@ -55,7 +55,7 @@ void LayoutTableRow::willBeRemovedFromTree()
|
| section()->setNeedsCellRecalc();
|
| }
|
|
|
| -static bool borderWidthChanged(const LayoutStyle* oldStyle, const LayoutStyle* newStyle)
|
| +static bool borderWidthChanged(const ComputedStyle* oldStyle, const ComputedStyle* newStyle)
|
| {
|
| return oldStyle->borderLeftWidth() != newStyle->borderLeftWidth()
|
| || oldStyle->borderTopWidth() != newStyle->borderTopWidth()
|
| @@ -63,7 +63,7 @@ static bool borderWidthChanged(const LayoutStyle* oldStyle, const LayoutStyle* n
|
| || oldStyle->borderBottomWidth() != newStyle->borderBottomWidth();
|
| }
|
|
|
| -void LayoutTableRow::styleDidChange(StyleDifference diff, const LayoutStyle* oldStyle)
|
| +void LayoutTableRow::styleDidChange(StyleDifference diff, const ComputedStyle* oldStyle)
|
| {
|
| ASSERT(style()->display() == TABLE_ROW);
|
|
|
| @@ -236,7 +236,7 @@ LayoutTableRow* LayoutTableRow::createAnonymous(Document* document)
|
| LayoutTableRow* LayoutTableRow::createAnonymousWithParentRenderer(const LayoutObject* parent)
|
| {
|
| LayoutTableRow* newRow = LayoutTableRow::createAnonymous(&parent->document());
|
| - RefPtr<LayoutStyle> newStyle = LayoutStyle::createAnonymousStyleWithDisplay(parent->styleRef(), TABLE_ROW);
|
| + RefPtr<ComputedStyle> newStyle = ComputedStyle::createAnonymousStyleWithDisplay(parent->styleRef(), TABLE_ROW);
|
| newRow->setStyle(newStyle.release());
|
| return newRow;
|
| }
|
|
|