Changeset 52163 in webkit


Ignore:
Timestamp:
Dec 15, 2009 10:50:54 AM (14 years ago)
Author:
eric@webkit.org
Message:

2009-12-15 Zoltan Horvath <zoltan@webkit.org>

Reviewed by Darin Adler.

Allow custom memory allocation control for FontPlatformDataCacheKey class
https://bugs.webkit.org/show_bug.cgi?id=32552

Inherits the following struct from FastAllocBase because it is instantiated by 'new':

struct name - instantiated at: WebCore/'location'
struct FontPlatformDataCacheKey - platform/graphics/FontCache.cpp:118

  • platform/graphics/FontCache.cpp:
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r52160 r52163  
     12009-12-15  Zoltan Horvath  <zoltan@webkit.org>
     2
     3        Reviewed by Darin Adler.
     4
     5        Allow custom memory allocation control for FontPlatformDataCacheKey class
     6        https://bugs.webkit.org/show_bug.cgi?id=32552
     7
     8        Inherits the following struct from FastAllocBase because it is instantiated by 'new':
     9
     10        struct name                     - instantiated at: WebCore/'location'
     11        struct FontPlatformDataCacheKey - platform/graphics/FontCache.cpp:118
     12
     13        * platform/graphics/FontCache.cpp:
     14
    1152009-12-15  Jian Li  <jianli@chromium.org>
    216
  • trunk/WebCore/platform/graphics/FontCache.cpp

    r44703 r52163  
    5454}
    5555
    56 struct FontPlatformDataCacheKey {
     56struct FontPlatformDataCacheKey : FastAllocBase {
    5757    FontPlatformDataCacheKey(const AtomicString& family = AtomicString(), unsigned size = 0, unsigned weight = 0, bool italic = false,
    5858                             bool isPrinterFont = false, FontRenderingMode renderingMode = NormalRenderingMode)
Note: See TracChangeset for help on using the changeset viewer.