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


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

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

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 5d87405..9b6dffb 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -2,6 +2,19 @@
 
         Reviewed by Darin Adler.
 
+        Allow custom memory allocation control for WebCore's CSSRuleSet
+        https://bugs.webkit.org/show_bug.cgi?id=30852
+
+        Inherits CSSRuleSet class from Noncopyable because it is
+        instantiated by 'new' in WebCore/css/CSSStyleSelector.cpp:455 and
+        it is no need to be copyable.
+
+        * css/CSSStyleSelector.cpp:
+
+2009-10-30  Zoltan Horvath  <zoltan at webkit.org>
+
+        Reviewed by Darin Adler.
+
         Allow custom memory allocation control for WebCore's CSSRuleData
         https://bugs.webkit.org/show_bug.cgi?id=30851
 
diff --git a/WebCore/css/CSSStyleSelector.cpp b/WebCore/css/CSSStyleSelector.cpp
index 40627cf..364b875 100644
--- a/WebCore/css/CSSStyleSelector.cpp
+++ b/WebCore/css/CSSStyleSelector.cpp
@@ -350,7 +350,7 @@ if (id == propID) { \
     return; \
 }
 
-class CSSRuleSet {
+class CSSRuleSet : public Noncopyable {
 public:
     CSSRuleSet();
     ~CSSRuleSet();

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list