Index: Source/core/rendering/RenderLineBoxList.cpp |
diff --git a/Source/core/rendering/RenderLineBoxList.cpp b/Source/core/rendering/RenderLineBoxList.cpp |
index 1205f19a1fe46009d8439ce88b3cc609f9772516..6613173e51ac01650c17ba851c5ae29ce1ee3977 100644 |
--- a/Source/core/rendering/RenderLineBoxList.cpp |
+++ b/Source/core/rendering/RenderLineBoxList.cpp |
@@ -32,7 +32,6 @@ |
#include "core/rendering/HitTestResult.h" |
#include "core/rendering/InlineTextBox.h" |
#include "core/rendering/PaintInfo.h" |
-#include "core/rendering/RenderArena.h" |
#include "core/rendering/RenderInline.h" |
#include "core/rendering/RootInlineBox.h" |
@@ -63,13 +62,13 @@ void RenderLineBoxList::appendLineBox(InlineFlowBox* box) |
checkConsistency(); |
} |
-void RenderLineBoxList::deleteLineBoxTree(RenderArena* arena) |
+void RenderLineBoxList::deleteLineBoxTree() |
{ |
InlineFlowBox* line = m_firstLineBox; |
InlineFlowBox* nextLine; |
while (line) { |
nextLine = line->nextLineBox(); |
- line->deleteLine(arena); |
+ line->deleteLine(); |
line = nextLine; |
} |
m_firstLineBox = m_lastLineBox = 0; |
@@ -126,13 +125,13 @@ void RenderLineBoxList::removeLineBox(InlineFlowBox* box) |
checkConsistency(); |
} |
-void RenderLineBoxList::deleteLineBoxes(RenderArena* arena) |
+void RenderLineBoxList::deleteLineBoxes() |
{ |
if (m_firstLineBox) { |
InlineFlowBox* next; |
for (InlineFlowBox* curr = m_firstLineBox; curr; curr = next) { |
next = curr->nextLineBox(); |
- curr->destroy(arena); |
+ curr->destroy(); |
} |
m_firstLineBox = 0; |
m_lastLineBox = 0; |