Changeset 45897 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Jul 14, 2009, 11:00:24 PM (16 years ago)
Author:
[email protected]
Message:

2009-07-14 Steve Falkenburg <[email protected]>

Reorganize JavaScriptCore headers into:
API: include/JavaScriptCore/
Private: include/private/JavaScriptCore/

Reviewed by Darin Adler.

Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r45892 r45897  
    1212        * JavaScriptCore.vcproj/testapi/testapi.vcproj:
    1313        * JavaScriptCore.vcproj/testapi/testapiCommon.vsprops:
     14
     152009-07-14  Zoltan Horvath  <[email protected]>
     16
     17        Reviewed by Darin Adler.
     18
     19        Change JSCell's superclass to NoncopyableCustomAllocated
     20        https://bugs.webkit.org/show_bug.cgi?id=27248
     21
     22        JSCell class customizes operator new, since Noncopyable will be
     23        inherited from FastAllocBase, NoncopyableCustomAllocated has
     24        to be used.
     25
     26        * runtime/JSCell.h:
    1427
    15282009-07-14  Zoltan Horvath  <[email protected]>
  • trunk/JavaScriptCore/runtime/JSCell.h

    r45891 r45897  
    3232namespace JSC {
    3333
    34     class JSCell : public Noncopyable {
     34    class JSCell : public NoncopyableCustomAllocated {
    3535        friend class GetterSetter;
    3636        friend class Heap;
Note: See TracChangeset for help on using the changeset viewer.