Changeset 35756 in webkit for trunk/JavaScriptCore/profiler/Profiler.cpp
- Timestamp:
- Aug 14, 2008, 11:11:20 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/profiler/Profiler.cpp
r35184 r35756 42 42 static const char* GlobalCodeExecution = "(program)"; 43 43 static const char* AnonymousFunction = "(anonymous function)"; 44 static unsigned ProfilesUID = 0; 44 45 45 46 static CallIdentifier createCallIdentifier(JSObject*); … … 71 72 72 73 s_sharedEnabledProfilerReference = this; 73 RefPtr<ProfileGenerator> profileGenerator = ProfileGenerator::create(title, globalExec, exec->lexicalGlobalObject()->profileGroup(), client );74 RefPtr<ProfileGenerator> profileGenerator = ProfileGenerator::create(title, globalExec, exec->lexicalGlobalObject()->profileGroup(), client, ++ProfilesUID); 74 75 m_currentProfiles.append(profileGenerator); 75 76 }
Note:
See TracChangeset
for help on using the changeset viewer.