Changeset 64726 in webkit


Ignore:
Timestamp:
Aug 5, 2010 2:25:02 AM (14 years ago)
Author:
zoltan@webkit.org
Message:

2010-08-05 Zoltan Horvath <zoltan@webkit.org>

Reviewed by Simon Hausmann.

Allow custom memory allocation control for ClipperData struct
https://bugs.webkit.org/show_bug.cgi?id=43337

Inherits the following class from FastAllocBase because it is
instantiated by 'new':

class name - instantiated at: WebCore/'location'
RenderLayerBacking - rendering/RenderSVGResourceClipper.cpp:165

  • rendering/RenderSVGResourceClipper.h:
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r64724 r64726  
     12010-08-05  Zoltan Horvath  <zoltan@webkit.org>
     2
     3        Reviewed by Simon Hausmann.
     4
     5        Allow custom memory allocation control for ClipperData struct
     6        https://bugs.webkit.org/show_bug.cgi?id=43337
     7
     8        Inherits the following class from FastAllocBase because it is
     9        instantiated by 'new':                                     
     10
     11        class name         - instantiated at: WebCore/'location'
     12        RenderLayerBacking - rendering/RenderSVGResourceClipper.cpp:165
     13
     14        * rendering/RenderSVGResourceClipper.h:
     15
    1162010-08-05  Zoltan Horvath  <zoltan@webkit.org>
    217
  • trunk/WebCore/rendering/RenderSVGResourceClipper.h

    r64275 r64726  
    3737namespace WebCore {
    3838
    39 struct ClipperData {
     39struct ClipperData : FastAllocBase {
    4040    OwnPtr<ImageBuffer> clipMaskImage;
    4141};
Note: See TracChangeset for help on using the changeset viewer.