Changeset 56100 in webkit


Ignore:
Timestamp:
Mar 17, 2010 12:39:52 AM (14 years ago)
Author:
zoltan@webkit.org
Message:

2010-03-17 Zoltan Horvath <zoltan@webkit.org>

Reviewed by Eric Seidel.

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

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

class name - instantiated at: WebCore/'location'
AtomicString - WebCore/html/HTMLTableElement.cpp:525

  • platform/text/AtomicString.h:
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r56096 r56100  
     12010-03-17  Zoltan Horvath  <zoltan@webkit.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        Allow custom memory allocation control for AtomicString class
     6        https://bugs.webkit.org/show_bug.cgi?id=35907
     7
     8        Inherits the following class from FastAllocBase because it is
     9        instantiated by 'new':
     10
     11        class name   - instantiated at: WebCore/'location'
     12        AtomicString - WebCore/html/HTMLTableElement.cpp:525
     13
     14        * platform/text/AtomicString.h:
     15
    1162010-03-16  John Abd-El-Malek  <jam@chromium.org>
    217
  • trunk/WebCore/platform/text/AtomicString.h

    r53429 r56100  
    3737struct AtomicStringHash;
    3838
    39 class AtomicString {
     39class AtomicString : public FastAllocBase {
    4040public:
    4141    static void init();
Note: See TracChangeset for help on using the changeset viewer.