Changeset 34051 in webkit for trunk/JavaScriptCore
- Timestamp:
- May 22, 2008, 10:15:28 PM (17 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r34049 r34051 1 2008-05-22 Timothy Hatcher <[email protected]> 2 3 Added Profile::restoreAll and added ProfileNode::restoreAll 4 to the export file. 5 6 Reviewed by Adam Roben. 7 8 * JavaScriptCore.exp: 9 * profiler/Profile.h: 10 1 11 2008-05-22 Alp Toker <[email protected]> 2 12 -
trunk/JavaScriptCore/JavaScriptCore.exp
r34043 r34051 92 92 __ZN3KJS11JSImmediate8toStringEPKNS_7JSValueE 93 93 __ZN3KJS11ProfileNode5focusERKNS_14CallIdentifierEb 94 __ZN3KJS11ProfileNode10restoreAllEv 94 95 __ZN3KJS11ProfileNode7excludeERKNS_14CallIdentifierE 95 96 __ZN3KJS11ProfileNode18sortCallsAscendingEv -
trunk/JavaScriptCore/profiler/Profile.h
r34043 r34051 62 62 void focus(const ProfileNode* profileNode) { if (!profileNode) return; m_headNode->focus(profileNode->callIdentifier()); } 63 63 void exclude(const ProfileNode* profileNode) { if (!profileNode) return; m_headNode->exclude(profileNode->callIdentifier()); } 64 void restoreAll() { m_headNode->restoreAll(); } 64 65 65 66 #ifndef NDEBUG
Note:
See TracChangeset
for help on using the changeset viewer.