Changeset 53245 in webkit


Ignore:
Timestamp:
Jan 14, 2010 12:34:32 AM (14 years ago)
Author:
zoltan@webkit.org
Message:

2010-01-14 Zoltan Horvath <zoltan@webkit.org>

Reviewed by Oliver Hunt.

[Qt] Allow custom memory allocation control for FontPlatformDataPrivate class
https://bugs.webkit.org/show_bug.cgi?id=

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 FontPlatformDataPrivate - platform/graphics/qt/FontPlatformData.h:70

  • platform/graphics/qt/FontPlatformData.h:
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r53244 r53245  
     12010-01-14  Zoltan Horvath  <zoltan@webkit.org>
     2
     3        Reviewed by Oliver Hunt.
     4
     5        [Qt] Allow custom memory allocation control for FontPlatformDataPrivate class
     6        https://bugs.webkit.org/show_bug.cgi?id=
     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        class FontPlatformDataPrivate - platform/graphics/qt/FontPlatformData.h:70
     13
     14        * platform/graphics/qt/FontPlatformData.h:
     15
    1162010-01-12  Philippe Normand  <pnormand@igalia.com>
    217
  • trunk/WebCore/platform/graphics/qt/FontPlatformData.h

    r51758 r53245  
    3232
    3333class String;
    34 class FontPlatformDataPrivate {
     34class FontPlatformDataPrivate : public Noncopyable {
    3535public:
    3636    FontPlatformDataPrivate()
Note: See TracChangeset for help on using the changeset viewer.