| Index: debugger/QT/SkDebuggerGUI.cpp
|
| diff --git a/debugger/QT/SkDebuggerGUI.cpp b/debugger/QT/SkDebuggerGUI.cpp
|
| index 1873afca678d972cf7f68e9ccc125916041736c9..5cecba273c4ce9a7722161be94e05678690be7fd 100644
|
| --- a/debugger/QT/SkDebuggerGUI.cpp
|
| +++ b/debugger/QT/SkDebuggerGUI.cpp
|
| @@ -17,13 +17,13 @@
|
| __SK_FORCE_IMAGE_DECODER_LINKING;
|
|
|
| #if defined(SK_BUILD_FOR_WIN32)
|
| - #include "BenchSysTimer_windows.h"
|
| + #include "SysTimer_windows.h"
|
| #elif defined(SK_BUILD_FOR_MAC)
|
| - #include "BenchSysTimer_mach.h"
|
| + #include "SysTimer_mach.h"
|
| #elif defined(SK_BUILD_FOR_UNIX) || defined(SK_BUILD_FOR_ANDROID)
|
| - #include "BenchSysTimer_posix.h"
|
| + #include "SysTimer_posix.h"
|
| #else
|
| - #include "BenchSysTimer_c.h"
|
| + #include "SysTimer_c.h"
|
| #endif
|
|
|
|
|
| @@ -202,7 +202,7 @@ public:
|
| double totTime() const { return fTot; }
|
|
|
| protected:
|
| - BenchSysTimer fTimer;
|
| + SysTimer fTimer;
|
| SkTDArray<bool> fSkipCommands; // has the command been deleted in the GUI?
|
| SkTDArray<double> fTimes; // sum of time consumed for each command
|
| SkTDArray<double> fTypeTimes; // sum of time consumed for each type of command (e.g., drawPath)
|
|
|