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

Unified Diff: Source/core/rendering/RootInlineBox.h

Issue 16896019: Replace RenderArena with PartitionAlloc. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 6 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: Source/core/rendering/RootInlineBox.h
diff --git a/Source/core/rendering/RootInlineBox.h b/Source/core/rendering/RootInlineBox.h
index 130744c4d53d8ed51f8376a480bdcc378ef555eb..12e315be696b61948aaaea403a3a40a1b8ba0bf8 100644
--- a/Source/core/rendering/RootInlineBox.h
+++ b/Source/core/rendering/RootInlineBox.h
@@ -37,11 +37,11 @@ class RootInlineBox : public InlineFlowBox {
public:
explicit RootInlineBox(RenderBlock*);
- virtual void destroy(RenderArena*) OVERRIDE FINAL;
+ virtual void destroy() OVERRIDE FINAL;
virtual bool isRootInlineBox() const OVERRIDE FINAL { return true; }
- void detachEllipsisBox(RenderArena*);
+ void detachEllipsisBox();
RootInlineBox* nextRootBox() const { return static_cast<RootInlineBox*>(m_nextLineBox); }
RootInlineBox* prevRootBox() const { return static_cast<RootInlineBox*>(m_prevLineBox); }

Powered by Google App Engine
This is Rietveld 408576698