[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373

eric at webkit.org eric at webkit.org
Thu Apr 8 00:37:01 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit bba2e1215cfd25ea20bca330ffed0caa4de6dee6
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Dec 15 17:09:50 2009 +0000

    2009-12-15  Zoltan Horvath  <zoltan at webkit.org>
    
            Reviewed by Darin Adler.
    
            Allow custom memory allocation control for EmptyEditorClient and EmptyInspectorClient
            https://bugs.webkit.org/show_bug.cgi?id=32557
    
            Inherits the following classes from Noncopyable because these are instantiated
            by 'new' and no need to be copyable:
    
            class name                 - instantiated at: WebCore/'location'
            class EmptyEditorClient    - svg/graphics/SVGImage.cpp:230
            class EmptyInspectorClient - svg/graphics/SVGImage.cpp:241
    
            * loader/EmptyClients.h:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@52158 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index d94ac90..0be4d05 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -2,6 +2,22 @@
 
         Reviewed by Darin Adler.
 
+        Allow custom memory allocation control for EmptyEditorClient and EmptyInspectorClient
+        https://bugs.webkit.org/show_bug.cgi?id=32557
+
+        Inherits the following classes from Noncopyable because these are instantiated
+        by 'new' and no need to be copyable:
+
+        class name                 - instantiated at: WebCore/'location'
+        class EmptyEditorClient    - svg/graphics/SVGImage.cpp:230
+        class EmptyInspectorClient - svg/graphics/SVGImage.cpp:241
+
+        * loader/EmptyClients.h:
+
+2009-12-15  Zoltan Horvath  <zoltan at webkit.org>
+
+        Reviewed by Darin Adler.
+
         Allow custom memory allocation control for WebCore/inspector directory's classes
         https://bugs.webkit.org/show_bug.cgi?id=32556
 
diff --git a/WebCore/loader/EmptyClients.h b/WebCore/loader/EmptyClients.h
index 947af31..a69339b 100644
--- a/WebCore/loader/EmptyClients.h
+++ b/WebCore/loader/EmptyClients.h
@@ -320,7 +320,7 @@ public:
 
 };
 
-class EmptyEditorClient : public EditorClient {
+class EmptyEditorClient : public EditorClient, public Noncopyable {
 public:
     virtual ~EmptyEditorClient() { }
     virtual void pageDestroyed() { }
@@ -461,7 +461,7 @@ public:
 };
 #endif // ENABLE(DRAG_SUPPORT)
 
-class EmptyInspectorClient : public InspectorClient {
+class EmptyInspectorClient : public InspectorClient, public Noncopyable {
 public:
     virtual ~EmptyInspectorClient() { }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list