Changeset 44508 in webkit for trunk/JavaScriptCore/profiler/ProfileNode.cpp
- Timestamp:
- Jun 8, 2009, 3:37:06 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/profiler/ProfileNode.cpp
r42808 r44508 30 30 #include "ProfileNode.h" 31 31 32 #include "DateMath.h"33 32 #include "Profiler.h" 34 33 #include <stdio.h> 34 #include <wtf/DateMath.h> 35 35 36 36 #if PLATFORM(WIN_OS) … … 50 50 return static_cast<double>(counter.QuadPart) / frequency.QuadPart; 51 51 #else 52 return getCurrentUTCTimeWithMicroseconds();52 return WTF::getCurrentUTCTimeWithMicroseconds(); 53 53 #endif 54 54 }
Note:
See TracChangeset
for help on using the changeset viewer.