Changeset 34960 in webkit for trunk/JavaScriptCore/profiler/Profile.cpp
- Timestamp:
- Jul 2, 2008, 3:50:17 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/profiler/Profile.cpp
r34957 r34960 27 27 #include "Profile.h" 28 28 29 #include "ProfileNode.h"30 #include "JSGlobalObject.h"31 29 #include "ExecState.h" 32 30 #include "JSFunction.h" 31 #include "JSGlobalObject.h" 32 #include "ProfileNode.h" 33 #include "TreeProfile.h" 33 34 34 35 #include <stdio.h> … … 40 41 PassRefPtr<Profile> Profile::create(const UString& title, ExecState* originatingGlobalExec, unsigned pageGroupIdentifier, ProfilerClient* client) 41 42 { 42 return adoptRef(new Profile(title, originatingGlobalExec, pageGroupIdentifier, client));43 return TreeProfile::create(title, originatingGlobalExec, pageGroupIdentifier, client); 43 44 } 44 45 … … 57 58 } 58 59 60 Profile::~Profile() 61 { 62 } 63 59 64 void Profile::stopProfiling() 60 65 {
Note:
See TracChangeset
for help on using the changeset viewer.