Changeset 35756 in webkit for trunk/JavaScriptCore/profiler/Profile.cpp
- Timestamp:
- Aug 14, 2008, 11:11:20 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/profiler/Profile.cpp
r35077 r35756 33 33 namespace KJS { 34 34 35 PassRefPtr<Profile> Profile::create(const UString& title )35 PassRefPtr<Profile> Profile::create(const UString& title, unsigned uid) 36 36 { 37 return TreeProfile::create(title );37 return TreeProfile::create(title, uid); 38 38 } 39 39 40 Profile::Profile(const UString& title )40 Profile::Profile(const UString& title, unsigned uid) 41 41 : m_title(title) 42 , m_uid(uid) 42 43 { 43 44 // FIXME: When multi-threading is supported this will be a vector and calls
Note:
See TracChangeset
for help on using the changeset viewer.