[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.22-985-g3c00f00
zoltan at webkit.org
zoltan at webkit.org
Wed Mar 17 18:32:46 UTC 2010
The following commit has been merged in the webkit-1.1 branch:
commit a0353499da63b920acb4d17610c1346d166138f9
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