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


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

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

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index e00d480..e30ee20 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,16 @@
+2009-11-09  Zoltan Horvath  <zoltan at webkit.org>
+
+        Reviewed by Darin Adler.
+
+        Allow custom memory allocation control for WebCore's DeleteButtonController
+        https://bugs.webkit.org/show_bug.cgi?id=31105
+
+        Inherits DeleteButtonController class from Noncopyable because it is 
+        instantiated by 'new' in WebCore/editing/Editor.cpp:919 and
+        it is no need to be copyable.  
+
+        * editing/DeleteButtonController.h:
+
 2009-11-09  Martin Robinson  <martin.james.robinson at gmail.com>
 
         Reviewed by Jan Alonzo.
diff --git a/WebCore/editing/DeleteButtonController.h b/WebCore/editing/DeleteButtonController.h
index 713ae8b..1286c07 100644
--- a/WebCore/editing/DeleteButtonController.h
+++ b/WebCore/editing/DeleteButtonController.h
@@ -36,7 +36,7 @@ class HTMLElement;
 class RenderObject;
 class VisibleSelection;
 
-class DeleteButtonController {
+class DeleteButtonController : public Noncopyable {
 public:
     DeleteButtonController(Frame*);
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list