Changeset 35184 in webkit for trunk/JavaScriptCore/profiler/ProfileGenerator.cpp
- Timestamp:
- Jul 15, 2008, 10:48:00 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/profiler/ProfileGenerator.cpp
r35102 r35184 34 34 static const char* NonJSExecution = "(idle)"; 35 35 36 PassRefPtr<ProfileGenerator> ProfileGenerator::create(const UString& title, ExecState* originatingGlobalExec, unsigned p ageGroupIdentifier, ProfilerClient* client)36 PassRefPtr<ProfileGenerator> ProfileGenerator::create(const UString& title, ExecState* originatingGlobalExec, unsigned profileGroup, ProfilerClient* client) 37 37 { 38 return adoptRef(new ProfileGenerator(title, originatingGlobalExec, p ageGroupIdentifier, client));38 return adoptRef(new ProfileGenerator(title, originatingGlobalExec, profileGroup, client)); 39 39 } 40 40 41 ProfileGenerator::ProfileGenerator(const UString& title, ExecState* originatingGlobalExec, unsigned p ageGroupIdentifier, ProfilerClient* client)41 ProfileGenerator::ProfileGenerator(const UString& title, ExecState* originatingGlobalExec, unsigned profileGroup, ProfilerClient* client) 42 42 : m_originatingGlobalExec(originatingGlobalExec) 43 , m_p ageGroupIdentifier(pageGroupIdentifier)43 , m_profileGroup(profileGroup) 44 44 , m_client(client) 45 45 , m_stoppedProfiling(false)
Note:
See TracChangeset
for help on using the changeset viewer.