Changeset 35756 in webkit for trunk/JavaScriptCore/profiler/ProfileGenerator.cpp
- Timestamp:
- Aug 14, 2008, 11:11:20 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/profiler/ProfileGenerator.cpp
r35184 r35756 34 34 static const char* NonJSExecution = "(idle)"; 35 35 36 PassRefPtr<ProfileGenerator> ProfileGenerator::create(const UString& title, ExecState* originatingGlobalExec, unsigned profileGroup, ProfilerClient* client )36 PassRefPtr<ProfileGenerator> ProfileGenerator::create(const UString& title, ExecState* originatingGlobalExec, unsigned profileGroup, ProfilerClient* client, unsigned uid) 37 37 { 38 return adoptRef(new ProfileGenerator(title, originatingGlobalExec, profileGroup, client ));38 return adoptRef(new ProfileGenerator(title, originatingGlobalExec, profileGroup, client, uid)); 39 39 } 40 40 41 ProfileGenerator::ProfileGenerator(const UString& title, ExecState* originatingGlobalExec, unsigned profileGroup, ProfilerClient* client )41 ProfileGenerator::ProfileGenerator(const UString& title, ExecState* originatingGlobalExec, unsigned profileGroup, ProfilerClient* client, unsigned uid) 42 42 : m_originatingGlobalExec(originatingGlobalExec) 43 43 , m_profileGroup(profileGroup) … … 46 46 , m_stoppedCallDepth(0) 47 47 { 48 m_profile = Profile::create(title );48 m_profile = Profile::create(title, uid); 49 49 m_currentNode = m_head = m_profile->head(); 50 50 }
Note:
See TracChangeset
for help on using the changeset viewer.