Changeset 35037 in webkit for trunk/JavaScriptCore/profiler/ProfileNode.cpp
- Timestamp:
- Jul 7, 2008, 9:01:06 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/profiler/ProfileNode.cpp
r34962 r35037 30 30 #include "ProfileNode.h" 31 31 32 #include "DateMath.h" 32 33 #include "Profiler.h" 33 #include "DateMath.h"34 35 34 #include <stdio.h> 36 35 … … 80 79 } 81 80 82 RefPtr<ProfileNode> newChild = ProfileNode::create(callIdentifier, m_head ? m_head : this, this); 81 RefPtr<ProfileNode> newChild = ProfileNode::create(callIdentifier, m_head ? m_head : this, this); // If this ProfileNode has no head it is the head. 83 82 if (m_children.size()) 84 83 m_children.last()->setNextSibling(newChild.get()); … … 317 316 #endif 318 317 319 } 318 } // namespace KJS
Note:
See TracChangeset
for help on using the changeset viewer.