diff options
Diffstat (limited to 'src/3rdparty/webkit/JavaScriptCore/profiler/ProfileNode.cpp')
-rw-r--r-- | src/3rdparty/webkit/JavaScriptCore/profiler/ProfileNode.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/3rdparty/webkit/JavaScriptCore/profiler/ProfileNode.cpp b/src/3rdparty/webkit/JavaScriptCore/profiler/ProfileNode.cpp index bf0bbcb..19050aa 100644 --- a/src/3rdparty/webkit/JavaScriptCore/profiler/ProfileNode.cpp +++ b/src/3rdparty/webkit/JavaScriptCore/profiler/ProfileNode.cpp @@ -29,9 +29,9 @@ #include "config.h" #include "ProfileNode.h" -#include "DateMath.h" #include "Profiler.h" #include <stdio.h> +#include <wtf/DateMath.h> #if PLATFORM(WIN_OS) #include <windows.h> @@ -49,7 +49,7 @@ static double getCount() QueryPerformanceCounter(&counter); return static_cast<double>(counter.QuadPart) / frequency.QuadPart; #else - return getCurrentUTCTimeWithMicroseconds(); + return WTF::getCurrentUTCTimeWithMicroseconds(); #endif } |