Changeset 437 for trunk/JavaScriptCore/profiler/Profile.cpp
- Timestamp:
- 08/15/08 13:25:16 (5 months ago)
- Files:
-
- trunk/JavaScriptCore/profiler/Profile.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/JavaScriptCore/profiler/Profile.cpp
r388 r437 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
