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