[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.19-706-ge5415e9

zoltan at webkit.org zoltan at webkit.org
Thu Feb 4 21:36:22 UTC 2010


The following commit has been merged in the webkit-1.1 branch:
commit ff1cfbf8c77b4f108ef663a488892b7ee34af20f
Author: zoltan at webkit.org <zoltan at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Feb 2 07:56:07 2010 +0000

    2010-02-01  Zoltan Horvath  <zoltan at webkit.org>
    
            Reviewed by Darin Adler.
    
            Allow custom memory allocation control for IconDatabaseClient class
            https://bugs.webkit.org/show_bug.cgi?id=33252
    
            Inherits the following struct from Noncopyable because it is
            instantiated by 'new' and no need to be copyable:
    
            class name               - instantiated at: WebCore/'location'
            class IconDatabaseClient - loader/icon/IconDatabase.cpp:89
    
            * loader/icon/IconDatabaseClient.h:
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@54210 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 0834194..db3bf43 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,18 @@
+2010-02-01  Zoltan Horvath  <zoltan at webkit.org>
+
+        Reviewed by Darin Adler.
+
+        Allow custom memory allocation control for IconDatabaseClient class
+        https://bugs.webkit.org/show_bug.cgi?id=33252
+
+        Inherits the following struct from Noncopyable because it is 
+        instantiated by 'new' and no need to be copyable:
+
+        class name               - instantiated at: WebCore/'location'
+        class IconDatabaseClient - loader/icon/IconDatabase.cpp:89
+
+        * loader/icon/IconDatabaseClient.h:
+
 2010-02-01  Kwang Yul Seo  <skyul at company100.net>
 
         Reviewed by Eric Seidel.
diff --git a/WebCore/loader/icon/IconDatabaseClient.h b/WebCore/loader/icon/IconDatabaseClient.h
index 8806406..1811214 100644
--- a/WebCore/loader/icon/IconDatabaseClient.h
+++ b/WebCore/loader/icon/IconDatabaseClient.h
@@ -29,6 +29,8 @@
 #ifndef IconDatabaseClient_h
 #define IconDatabaseClient_h
 
+#include <wtf/Noncopyable.h>
+
 // All of these client methods will be called from a non-main thread
 // Take appropriate measures
  
@@ -36,7 +38,7 @@ namespace WebCore {
 
 class String;
 
-class IconDatabaseClient {
+class IconDatabaseClient : public Noncopyable {
 public:
     virtual ~IconDatabaseClient() { }
     virtual bool performImport() { return true; }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list