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


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

    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
    
            Inherits the following class from Noncopyable because these are instantiated
            by 'new' and no need to be copyable:
    
            class name                   - instantiated at: WebCore/'location'
            class InspectorFrontend      - inspector/InspectorController.cpp:538
            class InspectorTimelineAgent - inspector/InspectorController.cpp:1097
    
            * inspector/InspectorFrontend.h:
            * inspector/InspectorTimelineAgent.h:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@52157 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 992bca1..d94ac90 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -2,6 +2,23 @@
 
         Reviewed by Darin Adler.
 
+        Allow custom memory allocation control for WebCore/inspector directory's classes
+        https://bugs.webkit.org/show_bug.cgi?id=32556
+
+        Inherits the following class from Noncopyable because these are instantiated
+        by 'new' and no need to be copyable:
+
+        class name                   - instantiated at: WebCore/'location'
+        class InspectorFrontend      - inspector/InspectorController.cpp:538
+        class InspectorTimelineAgent - inspector/InspectorController.cpp:1097
+
+        * inspector/InspectorFrontend.h:
+        * inspector/InspectorTimelineAgent.h:
+
+2009-12-15  Zoltan Horvath  <zoltan at webkit.org>
+
+        Reviewed by Darin Adler.
+
         Allow custom memory allocation control for WebCore/platform/network directory's classes
         https://bugs.webkit.org/show_bug.cgi?id=32553
 
diff --git a/WebCore/inspector/InspectorFrontend.h b/WebCore/inspector/InspectorFrontend.h
index 547762f..ace7077 100644
--- a/WebCore/inspector/InspectorFrontend.h
+++ b/WebCore/inspector/InspectorFrontend.h
@@ -54,7 +54,7 @@ namespace WebCore {
     class ScriptString;
     class Storage;
 
-    class InspectorFrontend {
+    class InspectorFrontend : public Noncopyable {
     public:
         InspectorFrontend(InspectorController* inspectorController, ScriptState*, ScriptObject webInspector);
         ~InspectorFrontend();
diff --git a/WebCore/inspector/InspectorTimelineAgent.h b/WebCore/inspector/InspectorTimelineAgent.h
index 1929286..53670bb 100644
--- a/WebCore/inspector/InspectorTimelineAgent.h
+++ b/WebCore/inspector/InspectorTimelineAgent.h
@@ -65,7 +65,7 @@ namespace WebCore {
         ResourceFinishTimelineRecordType = 14,
     };
 
-    class InspectorTimelineAgent {
+    class InspectorTimelineAgent : public Noncopyable {
     public:
         InspectorTimelineAgent(InspectorFrontend* frontend);
         ~InspectorTimelineAgent();

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list