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


The following commit has been merged in the webkit-1.2 branch:
commit b12fc292fa417edc7c7d9fc28c5cbd30065b1394
Author: zoltan at webkit.org <zoltan at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Nov 9 14:27:00 2009 +0000

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

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index b0977ef..9e8905b 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -2,6 +2,19 @@
 
         Reviewed by Darin Adler.
 
+        Allow custom memory allocation control for WebCore's DocLoader
+        https://bugs.webkit.org/show_bug.cgi?id=31163
+
+        Inherits DocLoader class from Noncopyable because it is
+        instantiated by 'new' in WebCore/dom/Document.cpp:370 and 
+        it is no need to be copyable.
+
+        * loader/DocLoader.h:
+
+2009-11-09  Zoltan Horvath  <zoltan at webkit.org>
+
+        Reviewed by Darin Adler.
+
         Allow custom memory allocation control for WebCore's Tokenizer
         https://bugs.webkit.org/show_bug.cgi?id=31162
 
diff --git a/WebCore/loader/DocLoader.h b/WebCore/loader/DocLoader.h
index 13a57bd..8ec73e1 100644
--- a/WebCore/loader/DocLoader.h
+++ b/WebCore/loader/DocLoader.h
@@ -47,7 +47,7 @@ class ImageLoader;
 class KURL;
 
 // The DocLoader manages the loading of scripts/images/stylesheets for a single document.
-class DocLoader
+class DocLoader : public Noncopyable
 {
 friend class Cache;
 friend class ImageLoader;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list