Changeset 35039 in webkit for trunk/JavaScriptCore/profiler/TreeProfile.cpp
- Timestamp:
- Jul 7, 2008, 11:12:09 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/profiler/TreeProfile.cpp
r35037 r35039 29 29 namespace KJS { 30 30 31 PassRefPtr<TreeProfile> TreeProfile::create(const UString& title , ExecState* originatingGlobalExec, unsigned pageGroupIdentifier, ProfilerClient* client)31 PassRefPtr<TreeProfile> TreeProfile::create(const UString& title) 32 32 { 33 return adoptRef(new TreeProfile(title , originatingGlobalExec, pageGroupIdentifier, client));33 return adoptRef(new TreeProfile(title)); 34 34 } 35 35 36 TreeProfile::TreeProfile(const UString& title , ExecState* originatingGlobalExec, unsigned pageGroupIdentifier, ProfilerClient* client)37 : Profile(title , originatingGlobalExec, pageGroupIdentifier, client)36 TreeProfile::TreeProfile(const UString& title) 37 : Profile(title) 38 38 { 39 39 }
Note:
See TracChangeset
for help on using the changeset viewer.