// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_GL_GL_CONTEXT_EGL_H_ #define UI_GL_GL_CONTEXT_EGL_H_ #include "base/memory/raw_ptr.h" #include "ui/gl/gl_context.h" #include "ui/gl/gl_export.h" EGLContext; EGLConfig; namespace gl { class GLDisplayEGL; class GLSurface; // Encapsulates an EGL OpenGL ES context. class GL_EXPORT GLContextEGL : public GLContextReal { … }; } // namespace gl #endif // UI_GL_GL_CONTEXT_EGL_H_