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


The following commit has been merged in the webkit-1.2 branch:
commit 6da05445e0f1d428e63febc79d963c91eb3cb36d
Author: zoltan at webkit.org <zoltan at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Oct 30 22:59:07 2009 +0000

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

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 9b8f3ba..d11f442 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,16 @@
+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
+
+        Inherits CSSNamespace struct from Noncopyable because it is
+        instantiated by 'new' in WebCore/css/CSSStyleSheet.cpp:141 and
+        it is no need to be copyable.
+
+        * css/CSSNamespace.h:
+
 2009-10-30  Dmitry Titov  <dimich at chromium.org>
 
         Reviewed by David Levin.
diff --git a/WebCore/css/CSSNamespace.h b/WebCore/css/CSSNamespace.h
index 9194be8..c5ca7c9 100644
--- a/WebCore/css/CSSNamespace.h
+++ b/WebCore/css/CSSNamespace.h
@@ -28,7 +28,7 @@
 
 namespace WebCore {
 
-    struct CSSNamespace {
+    struct CSSNamespace : Noncopyable {
         AtomicString m_prefix;
         AtomicString m_uri;
         CSSNamespace* m_parent;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list