[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.15.1-1414-gc69ee75

zoltan at webkit.org zoltan at webkit.org
Thu Oct 29 20:42:23 UTC 2009


The following commit has been merged in the webkit-1.1 branch:
commit 8d9e3ee5788f7b7aac06fdf7b02e8a29253bb380
Author: zoltan at webkit.org <zoltan at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Oct 9 12:12:31 2009 +0000

    2009-10-09  Zoltan Horvath  <zoltan at webkit.org>
    
            Reviewed by Darin Adler.
    
            Allow custom memory allocation control for WebCore's CSSParserValueList
            https://bugs.webkit.org/show_bug.cgi?id=30249
    
            Inherits CSSParserValueList class from FastAllocBase because it has
            been instantiated by 'new' in WebCore/css/CSSGrammar.y:1271.
    
            * css/CSSParserValues.h:
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@49387 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 5d591c1..7df9b5e 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,15 @@
+2009-10-09  Zoltan Horvath  <zoltan at webkit.org>
+
+        Reviewed by Darin Adler.
+
+        Allow custom memory allocation control for WebCore's CSSParserValueList
+        https://bugs.webkit.org/show_bug.cgi?id=30249
+
+        Inherits CSSParserValueList class from FastAllocBase because it has 
+        been instantiated by 'new' in WebCore/css/CSSGrammar.y:1271.
+
+        * css/CSSParserValues.h:
+
 2009-10-09  Girish Ramakrishnan  <girish at forwardbias.in>
 
         Reviewed by Simon Hausmann.
diff --git a/WebCore/css/CSSParserValues.h b/WebCore/css/CSSParserValues.h
index 24bd9b7..242cda8 100644
--- a/WebCore/css/CSSParserValues.h
+++ b/WebCore/css/CSSParserValues.h
@@ -60,7 +60,7 @@ struct CSSParserValue {
     PassRefPtr<CSSValue> createCSSValue();
 };
 
-class CSSParserValueList {
+class CSSParserValueList : public FastAllocBase {
 public:
     CSSParserValueList()
         : m_current(0)

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list