Changeset 51990 in webkit


Ignore:
Timestamp:
Dec 11, 2009 8:19:36 AM (14 years ago)
Author:
zoltan@webkit.org
Message:

2009-12-11 Zoltan Horvath <zoltan@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:
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r51989 r51990  
     12009-12-11  Zoltan Horvath  <zoltan@webkit.org>
     2
     3        Reviewed by Darin Adler.
     4
     5        Allow custom memory allocation control for WebCore's EmptyFrameLoaderClient
     6        https://bugs.webkit.org/show_bug.cgi?id=32110
     7
     8        Inherits the following class from Noncopyable because it is
     9        instantiated by 'new' and no need to be copyable:
     10
     11        class name              - instantiated at: WebCore/'location'
     12
     13        class EmptyFrameLoaderClient - svg/graphics/SVGImage.cpp:229
     14
     15        * loader/FrameLoaderClient.h:
     16
    1172009-12-11  Zoltan Horvath  <zoltan@webkit.org>
    218
  • trunk/WebCore/loader/EmptyClients.h

    r51989 r51990  
    168168};
    169169
    170 class EmptyFrameLoaderClient : public FrameLoaderClient {
     170class EmptyFrameLoaderClient : public FrameLoaderClient, public Noncopyable {
    171171public:
    172172    virtual ~EmptyFrameLoaderClient() {  }
Note: See TracChangeset for help on using the changeset viewer.