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


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

    Allow custom memory allocation control for WebCore's RareData
    https://bugs.webkit.org/show_bug.cgi?id=30858
    
    Reviewed by Darin Adler.
    
    Inherits RareData struct from Noncopyable because it is
    instantiated by 'new' in WebCore/css/CSSSelector.h:259 and
    it is no need to be copyable.
    
    * css/CSSSelector.h:
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@50274 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 7309e54..958317f 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -2,6 +2,19 @@
 
         Reviewed by Darin Adler.
 
+        Allow custom memory allocation control for WebCore's RareData
+        https://bugs.webkit.org/show_bug.cgi?id=30858
+
+        Inherits RareData struct from Noncopyable because it is
+        instantiated by 'new' in WebCore/css/CSSSelector.h:259 and 
+        it is no need to be copyable.
+
+        * css/CSSSelector.h:
+
+2009-10-29  Zoltan Horvath  <zoltan at webkit.org>
+
+        Reviewed by Darin Adler.
+
         Allow custom memory allocation control for WebCore's ShorthandScope
         https://bugs.webkit.org/show_bug.cgi?id=30859
 
diff --git a/WebCore/css/CSSSelector.h b/WebCore/css/CSSSelector.h
index 0c3b677..d8119cc 100644
--- a/WebCore/css/CSSSelector.h
+++ b/WebCore/css/CSSSelector.h
@@ -230,7 +230,7 @@ namespace WebCore {
 
         void extractPseudoType() const;
 
-        struct RareData {
+        struct RareData : Noncopyable {
             RareData(CSSSelector* tagHistory)
                 : m_tagHistory(tagHistory)
                 , m_simpleSelector(0)

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list