Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(458)

Unified Diff: third_party/WebKit/WebCore/rendering/RenderTableSection.cpp

Issue 20076: WebKit merge 40500:40539 [WebKit side] (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/WebCore/rendering/RenderTableSection.cpp
===================================================================
--- third_party/WebKit/WebCore/rendering/RenderTableSection.cpp (revision 9118)
+++ third_party/WebKit/WebCore/rendering/RenderTableSection.cpp (working copy)
@@ -147,6 +147,12 @@
RenderContainer::addChild(child, beforeChild);
}
+void RenderTableSection::removeChild(RenderObject* oldChild)
+{
+ setNeedsCellRecalc();
+ RenderContainer::removeChild(oldChild);
+}
+
bool RenderTableSection::ensureRows(int numRows)
{
int nRows = m_gridRows;
@@ -1082,12 +1088,6 @@
}
}
-RenderObject* RenderTableSection::removeChildNode(RenderObject* child, bool fullRemove)
-{
- setNeedsCellRecalc();
- return RenderContainer::removeChildNode(child, fullRemove);
-}
-
// Hit Testing
bool RenderTableSection::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int xPos, int yPos, int tx, int ty, HitTestAction action)
{
« no previous file with comments | « third_party/WebKit/WebCore/rendering/RenderTableSection.h ('k') | third_party/WebKit/WebCore/svg/graphics/SVGImage.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698