Index: Source/WebCore/rendering/RenderBlock.h |
=================================================================== |
--- Source/WebCore/rendering/RenderBlock.h (revision 115616) |
+++ Source/WebCore/rendering/RenderBlock.h (working copy) |
@@ -385,30 +385,6 @@ |
void updateScrollInfoAfterLayout(); |
- // These functions are only used internally to manipulate the render tree structure via remove/insert/appendChildNode. |
- // Since they are typically called only to move objects around within anonymous blocks (which only have layers in |
- // the case of column spans), the default for fullRemoveInsert is false rather than true. |
- void moveChildTo(RenderBlock* to, RenderObject* child, bool fullRemoveInsert = false) |
- { |
- return moveChildTo(to, child, 0, fullRemoveInsert); |
- } |
- void moveChildTo(RenderBlock* toBlock, RenderObject* child, RenderObject* beforeChild, bool fullRemoveInsert = false); |
- void moveAllChildrenTo(RenderBlock* toBlock, bool fullRemoveInsert = false) |
- { |
- return moveAllChildrenTo(toBlock, 0, fullRemoveInsert); |
- } |
- void moveAllChildrenTo(RenderBlock* toBlock, RenderObject* beforeChild, bool fullRemoveInsert = false) |
- { |
- return moveChildrenTo(toBlock, firstChild(), 0, beforeChild, fullRemoveInsert); |
- } |
- // Move all of the kids from |startChild| up to but excluding |endChild|. 0 can be passed as the endChild to denote |
- // that all the kids from |startChild| onwards should be added. |
- void moveChildrenTo(RenderBlock* toBlock, RenderObject* startChild, RenderObject* endChild, bool fullRemoveInsert = false) |
- { |
- return moveChildrenTo(toBlock, startChild, endChild, 0, fullRemoveInsert); |
- } |
- void moveChildrenTo(RenderBlock* toBlock, RenderObject* startChild, RenderObject* endChild, RenderObject* beforeChild, bool fullRemoveInsert = false); |
- |
LayoutUnit maxPositiveMarginBefore() const { return m_rareData ? m_rareData->m_margins.positiveMarginBefore() : RenderBlockRareData::positiveMarginBeforeDefault(this); } |
LayoutUnit maxNegativeMarginBefore() const { return m_rareData ? m_rareData->m_margins.negativeMarginBefore() : RenderBlockRareData::negativeMarginBeforeDefault(this); } |
LayoutUnit maxPositiveMarginAfter() const { return m_rareData ? m_rareData->m_margins.positiveMarginAfter() : RenderBlockRareData::positiveMarginAfterDefault(this); } |
@@ -849,8 +825,6 @@ |
bool expandsToEncloseOverhangingFloats() const; |
- RenderObject* splitAnonymousBlocksAroundChild(RenderObject* beforeChild); |
- RenderObject* splitTablePartsAroundChild(RenderObject* beforeChild); |
void splitBlocks(RenderBlock* fromBlock, RenderBlock* toBlock, RenderBlock* middleBlock, |
RenderObject* beforeChild, RenderBoxModelObject* oldCont); |
void splitFlow(RenderObject* beforeChild, RenderBlock* newBlockBox, |