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 356fc1905c29829cbf5c164ab5eff764bbb0b268..14822d821cb863e8b9e96e3229513ce768d3f494 100644 |
--- a/third_party/WebKit/Source/core/layout/LayoutTableCell.cpp |
+++ b/third_party/WebKit/Source/core/layout/LayoutTableCell.cpp |
@@ -304,11 +304,11 @@ void LayoutTableCell::setOverrideLogicalContentHeightFromRowHeight(LayoutUnit ro |
setOverrideLogicalContentHeight((rowHeight - borderAndPaddingLogicalHeight()).clampNegativeToZero()); |
} |
-LayoutSize LayoutTableCell::offsetFromContainer(const LayoutObject* o, const LayoutPoint& point, bool* offsetDependsOnPoint) const |
+LayoutSize LayoutTableCell::offsetFromContainer(const LayoutObject* o) const |
{ |
ASSERT(o == container()); |
- LayoutSize offset = LayoutBlockFlow::offsetFromContainer(o, point, offsetDependsOnPoint); |
+ LayoutSize offset = LayoutBlockFlow::offsetFromContainer(o); |
if (parent()) |
offset -= parentBox()->locationOffset(); |