Changeset 32234 in webkit for trunk/JavaScriptCore/profiler/FunctionCallProfile.h
- Timestamp:
- Apr 18, 2008, 3:41:49 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/profiler/FunctionCallProfile.h
r32228 r32234 31 31 32 32 #include <kjs/ustring.h> 33 #include <wtf/Deque.h> 33 34 34 35 namespace KJS { … … 36 37 class FunctionCallProfile; 37 38 38 typedef Vector<FunctionCallProfile*>::const_iterator StackIterator;39 typedef Deque<FunctionCallProfile*>::const_iterator StackIterator; 39 40 40 41 class FunctionCallProfile { … … 50 51 51 52 UString functionName() const { return m_functionName; } 52 double mi croSecs() const { return m_timeSum; }53 double milliSecs() const { return m_timeSum; } 53 54 54 55 void printDataInspectorStyle(int indentLevel) const; … … 60 61 double m_startTime; 61 62 62 Vector<FunctionCallProfile*> m_children;63 Deque<FunctionCallProfile*> m_children; 63 64 }; 64 65
Note:
See TracChangeset
for help on using the changeset viewer.