[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

zoltan at webkit.org zoltan at webkit.org
Wed Dec 22 11:43:59 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 6c36f3f6ca8a3bb6c05d1ff2dc7a88e5d135d448
Author: zoltan at webkit.org <zoltan at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Aug 5 09:25:02 2010 +0000

    2010-08-05  Zoltan Horvath  <zoltan at 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:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@64726 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 9c00449..ad9d516 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -2,6 +2,21 @@
 
         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:
+
+2010-08-05  Zoltan Horvath  <zoltan at webkit.org>
+
+        Reviewed by Simon Hausmann.
+
         Allow custom memory allocation control for DoctypeData class
         https://bugs.webkit.org/show_bug.cgi?id=43343
 
diff --git a/WebCore/rendering/RenderSVGResourceClipper.h b/WebCore/rendering/RenderSVGResourceClipper.h
index 3c76bc8..d334c7d 100644
--- a/WebCore/rendering/RenderSVGResourceClipper.h
+++ b/WebCore/rendering/RenderSVGResourceClipper.h
@@ -36,7 +36,7 @@
 
 namespace WebCore {
 
-struct ClipperData {
+struct ClipperData : FastAllocBase {
     OwnPtr<ImageBuffer> clipMaskImage;
 };
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list