Ignore:
Timestamp:
Oct 16, 2013, 3:28:24 PM (12 years ago)
Author:
[email protected]
Message:

Take RenderObjects out of the arena.
<https://webkit.org/b/122895>

Reviewed by Antti Koivisto.

Stop arena-allocating renderers so we can move forward on improving
render tree memory management. This will also allow rendering code
to take advantage of malloc optimizations.

Line boxes and BiDi runs remain in the arena for now.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/rendering/RenderMultiColumnBlock.cpp

    r157408 r157535  
    140140{
    141141    if (!m_flowThread) {
    142         m_flowThread = new (renderArena()) RenderMultiColumnFlowThread(document());
     142        m_flowThread = new RenderMultiColumnFlowThread(document());
    143143        m_flowThread->setStyle(RenderStyle::createAnonymousStyleWithDisplay(style(), BLOCK));
    144144        RenderBlock::addChild(m_flowThread);
Note: See TracChangeset for help on using the changeset viewer.