[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.17-1283-gcf603cf
zoltan at webkit.org
zoltan at webkit.org
Tue Jan 5 23:47:16 UTC 2010
The following commit has been merged in the webkit-1.1 branch:
commit a092301ccf97b90b86383261e24d6349b38bd8ca
Author: zoltan at webkit.org <zoltan at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Fri Dec 11 16:19:36 2009 +0000
2009-12-11 Zoltan Horvath <zoltan at webkit.org>
Reviewed by Darin Adler.
Allow custom memory allocation control for WebCore's EmptyFrameLoaderClient
https://bugs.webkit.org/show_bug.cgi?id=32110
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 EmptyFrameLoaderClient - svg/graphics/SVGImage.cpp:229
* loader/FrameLoaderClient.h:
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51990 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 5c72d37..4fffe66 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -2,6 +2,22 @@
Reviewed by Darin Adler.
+ Allow custom memory allocation control for WebCore's EmptyFrameLoaderClient
+ https://bugs.webkit.org/show_bug.cgi?id=32110
+
+ 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 EmptyFrameLoaderClient - svg/graphics/SVGImage.cpp:229
+
+ * loader/FrameLoaderClient.h:
+
+2009-12-11 Zoltan Horvath <zoltan at webkit.org>
+
+ Reviewed by Darin Adler.
+
Allow custom memory allocation control for 3 classes in WebCore's svg and loader directory
https://bugs.webkit.org/show_bug.cgi?id=32106
diff --git a/WebCore/loader/EmptyClients.h b/WebCore/loader/EmptyClients.h
index 38d7a33..947af31 100644
--- a/WebCore/loader/EmptyClients.h
+++ b/WebCore/loader/EmptyClients.h
@@ -167,7 +167,7 @@ public:
#endif
};
-class EmptyFrameLoaderClient : public FrameLoaderClient {
+class EmptyFrameLoaderClient : public FrameLoaderClient, public Noncopyable {
public:
virtual ~EmptyFrameLoaderClient() { }
virtual void frameLoaderDestroyed() { }
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list