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/svg/SVGClipPathElement.cpp

    r156876 r157535  
    115115}
    116116
    117 RenderElement* SVGClipPathElement::createRenderer(RenderArena& arena, RenderStyle&)
     117RenderElement* SVGClipPathElement::createRenderer(RenderStyle&)
    118118{
    119     return new (arena) RenderSVGResourceClipper(*this);
     119    return new RenderSVGResourceClipper(*this);
    120120}
    121121
Note: See TracChangeset for help on using the changeset viewer.