| OLD | NEW |
| (Empty) |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef UI_GL_GL_SURFACE_OZONE_H_ | |
| 6 #define UI_GL_GL_SURFACE_OZONE_H_ | |
| 7 | |
| 8 #include "base/memory/ref_counted.h" | |
| 9 #include "ui/gfx/native_widget_types.h" | |
| 10 #include "ui/gl/gl_export.h" | |
| 11 #include "ui/gl/gl_surface.h" | |
| 12 | |
| 13 namespace gl { | |
| 14 | |
| 15 GL_EXPORT scoped_refptr<GLSurface> CreateViewGLSurfaceOzone( | |
| 16 gfx::AcceleratedWidget window); | |
| 17 | |
| 18 GL_EXPORT scoped_refptr<GLSurface> CreateViewGLSurfaceOzoneSurfaceless( | |
| 19 gfx::AcceleratedWidget window); | |
| 20 | |
| 21 GL_EXPORT scoped_refptr<GLSurface> | |
| 22 CreateViewGLSurfaceOzoneSurfacelessSurfaceImpl(gfx::AcceleratedWidget window); | |
| 23 | |
| 24 } // namespace gl | |
| 25 | |
| 26 #endif // UI_GL_GL_SURFACE_OZONE_H_ | |
| OLD | NEW |