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

zoltan at webkit.org zoltan at webkit.org
Wed Apr 7 23:14:30 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit b53cdaf2ae51071891c355d4ae90447cbc0f68fd
Author: zoltan at webkit.org <zoltan at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Oct 29 15:38:27 2009 +0000

    Allow custom memory allocation control for WebCore's AXObjectCache
    https://bugs.webkit.org/show_bug.cgi?id=30848
    
    Reviewed by Darin Adler.
    
    Inherits AXObjectCache class from FastAllocBase because it is
    instantiated by 'new' in WebCore/dom/Document.cpp:1537 and
    it is no need to be copyable.
    
    * accessibility/AXObjectCache.h:
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@50272 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index fd0b1b8..a005a33 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,16 @@
+2009-10-29  Zoltan Horvath  <zoltan at webkit.org>
+
+        Reviewed by Darin Adler.
+
+        Allow custom memory allocation control for WebCore's AXObjectCache
+        https://bugs.webkit.org/show_bug.cgi?id=30848
+
+        Inherits AXObjectCache class from FastAllocBase because it is
+        instantiated by 'new' in WebCore/dom/Document.cpp:1537 and                                
+        it is no need to be copyable.
+
+        * accessibility/AXObjectCache.h:
+
 2009-10-28  Adam Barth  <abarth at webkit.org>
 
         Reviewed by Eric Seidel.
diff --git a/WebCore/accessibility/AXObjectCache.h b/WebCore/accessibility/AXObjectCache.h
index 5a75f84..fab2c28 100644
--- a/WebCore/accessibility/AXObjectCache.h
+++ b/WebCore/accessibility/AXObjectCache.h
@@ -55,7 +55,7 @@ namespace WebCore {
         EAffinity affinity;
     };
 
-    class AXObjectCache {
+    class AXObjectCache : public Noncopyable {
     public:
         AXObjectCache();
         ~AXObjectCache();

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list