diff options
Diffstat (limited to 'ui/gl/gl_surface.h')
-rw-r--r-- | ui/gl/gl_surface.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/ui/gl/gl_surface.h b/ui/gl/gl_surface.h index 9fee0a3..2f9ad84 100644 --- a/ui/gl/gl_surface.h +++ b/ui/gl/gl_surface.h @@ -99,12 +99,6 @@ class GL_EXPORT GLSurface : public base::RefCounted<GLSurface> { // Initialize GL bindings. static bool InitializeOneOff(); - // Unit tests should call these instead of InitializeOneOff() to set up - // GL bindings appropriate for tests. - static void InitializeOneOffForTests(); - static void InitializeOneOffWithMockBindingsForTests(); - static void InitializeDynamicMockBindingsForTests(GLContext* context); - // Called after a context is made current with this surface. Returns false // on error. virtual bool OnMakeCurrent(GLContext* context); @@ -189,6 +183,7 @@ class GL_EXPORT GLSurface : public base::RefCounted<GLSurface> { private: friend class base::RefCounted<GLSurface>; friend class GLContext; + friend class GLSurfaceTestSupport; DISALLOW_COPY_AND_ASSIGN(GLSurface); }; |