[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 00:17:52 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit 63c386d107d02bf7801ffbf3c2bd0aca99f70c9e
Author: zoltan at webkit.org <zoltan at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Dec 4 08:38:39 2009 +0000

    2009-12-04  Zoltan Horvath  <zoltan at webkit.org>
    
            Reviewed by Eric Seidel.
    
            Allow custom memory allocation control for 2 classes of the platform directory in WebCore
            https://bugs.webkit.org/show_bug.cgi?id=
    
            Inherits the following class from Noncopyable because it is instantiated
            by 'new' and no need to be copyable:
    
            class/struct name         - instantiated at: WebCore/'location'
    
            class SharedTimer         - (its child class) workers/WorkerRunLoop.cpp:91
    
            Inherits the following class from FastAllocBase because it is
            instantiated by 'new':
    
            class TransformOperations - rendering/style/RenderStyle.h:1175
    
            * platform/SharedTimer.h:
            * platform/graphics/transforms/TransformOperations.h:
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51687 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 46a7e01..1dee798 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -2,6 +2,28 @@
 
         Reviewed by Eric Seidel.
 
+        Allow custom memory allocation control for 2 classes of the platform directory in WebCore
+        https://bugs.webkit.org/show_bug.cgi?id=
+
+        Inherits the following class from Noncopyable because it is instantiated
+        by 'new' and no need to be copyable:
+
+        class/struct name         - instantiated at: WebCore/'location'
+
+        class SharedTimer         - (its child class) workers/WorkerRunLoop.cpp:91
+
+        Inherits the following class from FastAllocBase because it is
+        instantiated by 'new':
+
+        class TransformOperations - rendering/style/RenderStyle.h:1175
+
+        * platform/SharedTimer.h:
+        * platform/graphics/transforms/TransformOperations.h:
+
+2009-12-04  Zoltan Horvath  <zoltan at webkit.org>
+
+        Reviewed by Eric Seidel.
+
         Allow custom memory allocation control for the svg directory in WebCore
         https://bugs.webkit.org/show_bug.cgi?id=
 
diff --git a/WebCore/platform/SharedTimer.h b/WebCore/platform/SharedTimer.h
index a005add..4fc0147 100644
--- a/WebCore/platform/SharedTimer.h
+++ b/WebCore/platform/SharedTimer.h
@@ -31,7 +31,7 @@ namespace WebCore {
     // Each thread has its own single instance of shared timer, which implements this interface.
     // This instance is shared by all timers in the thread.
     // Not intended to be used directly; use the Timer class instead.
-    class SharedTimer {
+    class SharedTimer : public Noncopyable {
     public:
         virtual ~SharedTimer() {}
         virtual void setFiredFunction(void (*)()) = 0;
diff --git a/WebCore/platform/graphics/transforms/TransformOperations.h b/WebCore/platform/graphics/transforms/TransformOperations.h
index dd56408..08efd23 100644
--- a/WebCore/platform/graphics/transforms/TransformOperations.h
+++ b/WebCore/platform/graphics/transforms/TransformOperations.h
@@ -31,7 +31,7 @@
 
 namespace WebCore {
 
-class TransformOperations {
+class TransformOperations : public FastAllocBase {
 public:
     TransformOperations(bool makeIdentity = false);
     

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list