// Copyright 2020 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_INIT_GL_DISPLAY_EGL_UTIL_OZONE_H_ #define UI_GL_INIT_GL_DISPLAY_EGL_UTIL_OZONE_H_ #include <vector> #include "base/no_destructor.h" #include "ui/gl/gl_display_egl_util.h" namespace gl { // Forwards calls to PlatformGLEGLUtility. It might be implemented by some // platforms. class GLDisplayEglUtilOzone : public GLDisplayEglUtil { … }; } // namespace gl #endif // UI_GL_INIT_GL_DISPLAY_EGL_UTIL_OZONE_H_