Changeset 52171 in webkit


Ignore:
Timestamp:
Dec 15, 2009 1:55:05 PM (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 WeakGCMap class
https://bugs.webkit.org/show_bug.cgi?id=32547

Inherits WeakGCMap from FastAllocBase because it is instantiated by
'new' at: WebCore/dom/Document.cpp:512.

  • runtime/WeakGCMap.h:
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r52162 r52171  
     12009-12-15  Zoltan Horvath  <zoltan@webkit.org>
     2
     3        Reviewed by Darin Adler.
     4
     5        Allow custom memory allocation control for WeakGCMap class
     6        https://bugs.webkit.org/show_bug.cgi?id=32547
     7
     8        Inherits WeakGCMap from FastAllocBase because it is instantiated by
     9        'new' at: WebCore/dom/Document.cpp:512.
     10
     11        * runtime/WeakGCMap.h:
     12
    1132009-12-15  Zoltan Horvath  <zoltan@webkit.org>
    214
  • trunk/JavaScriptCore/runtime/WeakGCMap.h

    r52082 r52171  
    3535// A HashMap whose get() function returns emptyValue() for cells awaiting destruction.
    3636template<typename KeyType, typename MappedType>
    37 class WeakGCMap {
     37class WeakGCMap : public FastAllocBase {
    3838    /*
    3939    Invariants:
Note: See TracChangeset for help on using the changeset viewer.