[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 02:19:24 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit 57f9e5fce9449847b7a89fb6451dc2d3736d1396
Author: zoltan at webkit.org <zoltan at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Mar 11 08:41:02 2010 +0000

    2010-03-11  Zoltan Horvath  <zoltan at webkit.org>
    
            Reviewed by Simon Hausmann.
    
            Allow custom memory allocation control for TimingFunction struct
            https://bugs.webkit.org/show_bug.cgi?id=35855
    
            Inherits the following struct from FastAllocBase because it is
            instantiated by 'new':
    
            class name    - instantiated at: WebCore/'location'
            TimingFuction - platform/graphics/GraphicsLayer.h:89
    
            * platform/animation/TimingFunction.h:
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@55835 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index d1f4d25..3e4a72e 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,18 @@
+2010-03-11  Zoltan Horvath  <zoltan at webkit.org>
+
+        Reviewed by Simon Hausmann.
+
+        Allow custom memory allocation control for TimingFunction struct
+        https://bugs.webkit.org/show_bug.cgi?id=35855
+
+        Inherits the following struct from FastAllocBase because it is 
+        instantiated by 'new':
+
+        class name    - instantiated at: WebCore/'location'
+        TimingFuction - platform/graphics/GraphicsLayer.h:89
+
+        * platform/animation/TimingFunction.h:
+
 2010-03-10  Gavin Barraclough  <barraclough at apple.com>
 
         Rubber stamped by Oliver Hunt.
diff --git a/WebCore/platform/animation/TimingFunction.h b/WebCore/platform/animation/TimingFunction.h
index f114596..ffcc4b8 100644
--- a/WebCore/platform/animation/TimingFunction.h
+++ b/WebCore/platform/animation/TimingFunction.h
@@ -29,7 +29,7 @@
 
 namespace WebCore {
 
-struct TimingFunction {
+struct TimingFunction : FastAllocBase {
     TimingFunction()
         : m_type(CubicBezierTimingFunction)
         , m_x1(0.25)

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list