Index: Source/core/layout/LayoutTableCol.cpp |
diff --git a/Source/core/layout/LayoutTableCol.cpp b/Source/core/layout/LayoutTableCol.cpp |
index 379747977b28f19021cc9482560d4615951d94e3..36d0fb2fd68985feb55f2646dd7921c409c305e1 100644 |
--- a/Source/core/layout/LayoutTableCol.cpp |
+++ b/Source/core/layout/LayoutTableCol.cpp |
@@ -44,7 +44,7 @@ LayoutTableCol::LayoutTableCol(Element* element) |
updateFromElement(); |
} |
-void LayoutTableCol::styleDidChange(StyleDifference diff, const LayoutStyle* oldStyle) |
+void LayoutTableCol::styleDidChange(StyleDifference diff, const ComputedStyle* oldStyle) |
{ |
LayoutBox::styleDidChange(diff, oldStyle); |
@@ -96,7 +96,7 @@ void LayoutTableCol::willBeRemovedFromTree() |
table()->removeColumn(this); |
} |
-bool LayoutTableCol::isChildAllowed(LayoutObject* child, const LayoutStyle& style) const |
+bool LayoutTableCol::isChildAllowed(LayoutObject* child, const ComputedStyle& style) const |
{ |
// We cannot use isTableColumn here as style() may return 0. |
return child->isLayoutTableCol() && style.display() == TABLE_COLUMN; |