[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

zoltan at webkit.org zoltan at webkit.org
Wed Dec 22 11:43:56 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 642c10ae9ec4c9316a927de59db19afb159223a8
Author: zoltan at webkit.org <zoltan at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Aug 5 09:06:01 2010 +0000

    2010-08-05  Zoltan Horvath  <zoltan at webkit.org>
    
            Reviewed by Simon Hausmann.
    
            Allow custom memory allocation control for DoctypeData class
            https://bugs.webkit.org/show_bug.cgi?id=43343
    
            Inherits the following class from Noncopyable because it is
            instantiated by 'new' and no need to be copyable:
    
            class name  - instantiated at: WebCore/'location'
            DoctypeData - html/HTMLToken.h:113
    
            * html/HTMLToken.h:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@64724 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 7821004..9c00449 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,18 @@
+2010-08-05  Zoltan Horvath  <zoltan at webkit.org>
+
+        Reviewed by Simon Hausmann.
+
+        Allow custom memory allocation control for DoctypeData class
+        https://bugs.webkit.org/show_bug.cgi?id=43343
+
+        Inherits the following class from Noncopyable because it is
+        instantiated by 'new' and no need to be copyable:
+
+        class name  - instantiated at: WebCore/'location'
+        DoctypeData - html/HTMLToken.h:113
+
+        * html/HTMLToken.h:
+
 2010-08-05  François Sausset  <sausset at gmail.com>
 
         Reviewed by Darin Adler.
diff --git a/WebCore/html/HTMLToken.h b/WebCore/html/HTMLToken.h
index 8465a35..5f2869b 100644
--- a/WebCore/html/HTMLToken.h
+++ b/WebCore/html/HTMLToken.h
@@ -262,7 +262,7 @@ private:
     // want to end up with a cleaner interface between the two classes.
     friend class AtomicHTMLToken;
 
-    class DoctypeData {
+    class DoctypeData : public Noncopyable {
     public:
         DoctypeData()
             : m_hasPublicIdentifier(false)

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list