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


The following commit has been merged in the webkit-1.2 branch:
commit 257887064cf50015299979c12b059da10749c9aa
Author: zoltan at webkit.org <zoltan at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Oct 30 23:02:49 2009 +0000

    Allow custom memory allocation control for WebCore's CSSRuleDataList
    https://bugs.webkit.org/show_bug.cgi?id=30850
    
    Reviewed by Darin Adler.
    
    Inherits CSSRuleDataList class from Noncopyable because it has been
    instantiated by 'new' in WebCore/css/CSSStyleSelector.cpp:2715 and
    it is no need to be copyable.
    
    * css/CSSStyleSelector.h:
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@50364 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index d11f442..8305103 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -2,6 +2,19 @@
 
         Reviewed by Darin Adler.
 
+        Allow custom memory allocation control for WebCore's CSSRuleDataList
+        https://bugs.webkit.org/show_bug.cgi?id=30850
+
+        Inherits CSSRuleDataList class from Noncopyable because it has been
+        instantiated by 'new' in WebCore/css/CSSStyleSelector.cpp:2715 and
+        it is no need to be copyable.
+
+        * css/CSSStyleSelector.h:
+
+2009-10-30  Zoltan Horvath  <zoltan at webkit.org>
+
+        Reviewed by Darin Adler.
+
         Allow custom memory allocation control for WebCore's CSSNamespace
         https://bugs.webkit.org/show_bug.cgi?id=30849
 
diff --git a/WebCore/css/CSSStyleSelector.h b/WebCore/css/CSSStyleSelector.h
index 6e0663f..8749c8a 100644
--- a/WebCore/css/CSSStyleSelector.h
+++ b/WebCore/css/CSSStyleSelector.h
@@ -314,7 +314,7 @@ public:
         CSSRuleData* m_next;
     };
 
-    class CSSRuleDataList {
+    class CSSRuleDataList : public Noncopyable {
     public:
         CSSRuleDataList(unsigned pos, CSSStyleRule* rule, CSSSelector* sel)
             : m_first(new CSSRuleData(pos, rule, sel))

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list