Split GrGLContextInfo into GrGLContext & GrGLContextInfo

https://codereview.appspot.com/7436045/



git-svn-id: http://skia.googlecode.com/svn/trunk@7905 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/bench/BenchGpuTimer_gl.h b/bench/BenchGpuTimer_gl.h
index 7c7b5c2..e472a4c 100644
--- a/bench/BenchGpuTimer_gl.h
+++ b/bench/BenchGpuTimer_gl.h
@@ -8,18 +8,18 @@
 #ifndef SkBenchGpuTimer_DEFINED
 #define SkBenchGpuTimer_DEFINED
 
-class SkGLContext;
+class SkGLContextHelper;
 
 class BenchGpuTimer {
 public:
-    BenchGpuTimer(const SkGLContext* glctx);
+    BenchGpuTimer(const SkGLContextHelper* glctx);
     ~BenchGpuTimer();
     void startGpu();
     double endGpu();
 private:
     unsigned fQuery;
     int fStarted;
-    const SkGLContext* fContext;
+    const SkGLContextHelper* fContext;
     bool fSupported;
 };