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

Unified Diff: Source/core/rendering/InlineFlowBox.cpp

Issue 20231002: Replace RenderArena with PartitionAlloc (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase. Created 7 years, 5 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
« no previous file with comments | « Source/core/rendering/InlineFlowBox.h ('k') | Source/core/rendering/InlineIterator.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/InlineFlowBox.cpp
diff --git a/Source/core/rendering/InlineFlowBox.cpp b/Source/core/rendering/InlineFlowBox.cpp
index 8fc9a4899cd89cbce2e8a7787eb44652f07c1500..e9890ff8ddb52976b7ed173ce555d5e3630272db 100644
--- a/Source/core/rendering/InlineFlowBox.cpp
+++ b/Source/core/rendering/InlineFlowBox.cpp
@@ -198,7 +198,7 @@ void InlineFlowBox::removeChild(InlineBox* child)
checkConsistency();
}
-void InlineFlowBox::deleteLine(RenderArena* arena)
+void InlineFlowBox::deleteLine()
{
InlineBox* child = firstChild();
InlineBox* next = 0;
@@ -208,7 +208,7 @@ void InlineFlowBox::deleteLine(RenderArena* arena)
#ifndef NDEBUG
child->setParent(0);
#endif
- child->deleteLine(arena);
+ child->deleteLine();
child = next;
}
#ifndef NDEBUG
@@ -217,7 +217,7 @@ void InlineFlowBox::deleteLine(RenderArena* arena)
#endif
removeLineBoxFromRenderObject();
- destroy(arena);
+ destroy();
}
void InlineFlowBox::removeLineBoxFromRenderObject()
« no previous file with comments | « Source/core/rendering/InlineFlowBox.h ('k') | Source/core/rendering/InlineIterator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698