Changeset 437 for trunk/JavaScriptCore/profiler/TreeProfile.cpp
- Timestamp:
- 08/15/08 13:25:16 (5 months ago)
- Files:
-
- trunk/JavaScriptCore/profiler/TreeProfile.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/JavaScriptCore/profiler/TreeProfile.cpp
r388 r437 31 31 namespace KJS { 32 32 33 PassRefPtr<TreeProfile> TreeProfile::create(const UString& title )33 PassRefPtr<TreeProfile> TreeProfile::create(const UString& title, unsigned uid) 34 34 { 35 return adoptRef(new TreeProfile(title ));35 return adoptRef(new TreeProfile(title, uid)); 36 36 } 37 37 38 TreeProfile::TreeProfile(const UString& title )39 : Profile(title )38 TreeProfile::TreeProfile(const UString& title, unsigned uid) 39 : Profile(title, uid) 40 40 { 41 41 }
