Index: tools/timer/GpuTimer.h |
diff --git a/tools/timer/GpuTimer.h b/tools/timer/GpuTimer.h |
index da1fdab5c0957a0207627160b5932f382a56fe0a..2100312a21fb922321a215ab6665e0ae67992c59 100644 |
--- a/tools/timer/GpuTimer.h |
+++ b/tools/timer/GpuTimer.h |
@@ -7,18 +7,18 @@ |
#ifndef GpuTimer_DEFINED |
#define GpuTimer_DEFINED |
-class SkGLContext; |
+class SkGLContextHelper; |
class GpuTimer { |
public: |
- GpuTimer(const SkGLContext*); |
+ GpuTimer(const SkGLContextHelper*); |
~GpuTimer(); |
void start(); |
double end(); |
private: |
unsigned fQuery; |
int fStarted; |
- const SkGLContext* fContext; |
+ const SkGLContextHelper* fContext; |
bool fSupported; |
}; |