[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373

zoltan at webkit.org zoltan at webkit.org
Thu Apr 8 01:05:20 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit a351b40eda7da9eba788cc4fba1b67bf1484edb1
Author: zoltan at webkit.org <zoltan at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Jan 14 08:41:13 2010 +0000

    [Qt] Allow custom memory allocation control for TransparencyLayer class
    https://bugs.webkit.org/show_bug.cgi?id=33585
    
    Reviewed by Oliver Hunt.
    
    Inherits the following class from FastAllocBase because it is
    instantiated by 'new':
    
    class name              - instantiated at: WebCore/'location'
    class TransparencyLayer - platform/graphics/qt/GraphicsContextQt.cpp:906
    
    * platform/graphics/qt/GraphicsContextQt.cpp:
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53246 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 6e439e5..5206900 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -2,8 +2,23 @@
 
         Reviewed by Oliver Hunt.
 
+        [Qt] Allow custom memory allocation control for TransparencyLayer class
+        https://bugs.webkit.org/show_bug.cgi?id=33585
+
+        Inherits the following class from FastAllocBase because it is 
+        instantiated by 'new':
+
+        class name              - instantiated at: WebCore/'location'
+        class TransparencyLayer - platform/graphics/qt/GraphicsContextQt.cpp:906
+
+        * platform/graphics/qt/GraphicsContextQt.cpp:
+
+2010-01-14  Zoltan Horvath  <zoltan at webkit.org>
+
+        Reviewed by Oliver Hunt.
+
         [Qt] Allow custom memory allocation control for FontPlatformDataPrivate class
-        https://bugs.webkit.org/show_bug.cgi?id=
+        https://bugs.webkit.org/show_bug.cgi?id=33583
 
         Inherits the following class from Noncopyable because it is 
         instantiated by 'new' and no need to be copyable:
diff --git a/WebCore/platform/graphics/qt/GraphicsContextQt.cpp b/WebCore/platform/graphics/qt/GraphicsContextQt.cpp
index 9f1b772..3ba91a2 100644
--- a/WebCore/platform/graphics/qt/GraphicsContextQt.cpp
+++ b/WebCore/platform/graphics/qt/GraphicsContextQt.cpp
@@ -166,7 +166,7 @@ static inline Qt::FillRule toQtFillRule(WindRule rule)
     return Qt::OddEvenFill;
 }
 
-struct TransparencyLayer {
+struct TransparencyLayer : FastAllocBase {
     TransparencyLayer(const QPainter* p, const QRect &rect)
         : pixmap(rect.width(), rect.height())
     {

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list