Show
Ignore:
Timestamp:
08/15/08 13:25:16 (5 months ago)
Author:
mbensi
Message:

merge with webkit revision 35774

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/JavaScriptCore/profiler/TreeProfile.cpp

    r388 r437  
    3131namespace KJS { 
    3232 
    33 PassRefPtr<TreeProfile> TreeProfile::create(const UString& title
     33PassRefPtr<TreeProfile> TreeProfile::create(const UString& title, unsigned uid
    3434{ 
    35     return adoptRef(new TreeProfile(title)); 
     35    return adoptRef(new TreeProfile(title, uid)); 
    3636} 
    3737 
    38 TreeProfile::TreeProfile(const UString& title
    39     : Profile(title
     38TreeProfile::TreeProfile(const UString& title, unsigned uid
     39    : Profile(title, uid
    4040{ 
    4141}