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

zoltan at webkit.org zoltan at webkit.org
Thu Apr 8 01:09:38 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit 4695448fb8a5cad2c0f08de846e2618d4f5dc5d9
Author: zoltan at webkit.org <zoltan at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Jan 15 08:23:16 2010 +0000

    2010-01-15  Zoltan Horvath  <zoltan at webkit.org>
    
            Reviewed by Oliver Hunt.
    
            [Qt] Allow custom memory allocation control for GraphicsContextPlatformPrivate class
            https://bugs.webkit.org/show_bug.cgi?id=33669
    
            Inherits the following class from Noncopyable because it is
            instantiated by 'new' and no need to be copyable:
    
            class name                           - instantiated at: WebCore/'location'
            class GraphicsContextPlatformPrivate - platform/graphics/qt/GraphicsContextQt.cpp:254
    
            * platform/graphics/qt/GraphicsContextQt.cpp:
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53325 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 9a820f6..1734fbb 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,18 @@
+2010-01-15  Zoltan Horvath  <zoltan at webkit.org>
+
+        Reviewed by Oliver Hunt.
+
+        [Qt] Allow custom memory allocation control for GraphicsContextPlatformPrivate class
+        https://bugs.webkit.org/show_bug.cgi?id=33669
+
+        Inherits the following class from Noncopyable because it is 
+        instantiated by 'new' and no need to be copyable:
+
+        class name                           - instantiated at: WebCore/'location'
+        class GraphicsContextPlatformPrivate - platform/graphics/qt/GraphicsContextQt.cpp:254
+
+        * platform/graphics/qt/GraphicsContextQt.cpp:
+
 2010-01-14  Darin Fisher  <darin at chromium.org>
 
         Reviewed by Brady Eidson.
diff --git a/WebCore/platform/graphics/qt/GraphicsContextQt.cpp b/WebCore/platform/graphics/qt/GraphicsContextQt.cpp
index 3ba91a2..043ab0b 100644
--- a/WebCore/platform/graphics/qt/GraphicsContextQt.cpp
+++ b/WebCore/platform/graphics/qt/GraphicsContextQt.cpp
@@ -198,7 +198,7 @@ private:
     TransparencyLayer & operator=(const TransparencyLayer &) { return *this; }
 };
 
-class GraphicsContextPlatformPrivate {
+class GraphicsContextPlatformPrivate : public Noncopyable {
 public:
     GraphicsContextPlatformPrivate(QPainter* painter);
     ~GraphicsContextPlatformPrivate();

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list