| Index: ui/ozone/public/surface_factory_ozone.cc
|
| diff --git a/ui/ozone/public/surface_factory_ozone.cc b/ui/ozone/public/surface_factory_ozone.cc
|
| index 8f22afe16ce915ab44c0ece75486393678359e99..aa795f7a97c60791a36107ca65b00bbcc1607b8e 100644
|
| --- a/ui/ozone/public/surface_factory_ozone.cc
|
| +++ b/ui/ozone/public/surface_factory_ozone.cc
|
| @@ -23,6 +23,29 @@ intptr_t SurfaceFactoryOzone::GetNativeDisplay() {
|
| return 0;
|
| }
|
|
|
| +bool SurfaceFactoryOzone::UseNewSurfaceAPI() {
|
| + return false;
|
| +}
|
| +
|
| +scoped_refptr<gl::GLSurface> SurfaceFactoryOzone::CreateViewGLSurface(
|
| + gl::GLImplementation implementation,
|
| + gfx::AcceleratedWidget widget) {
|
| + return nullptr;
|
| +}
|
| +
|
| +scoped_refptr<gl::GLSurface>
|
| +SurfaceFactoryOzone::CreateSurfacelessViewGLSurface(
|
| + gl::GLImplementation implementation,
|
| + gfx::AcceleratedWidget widget) {
|
| + return nullptr;
|
| +}
|
| +
|
| +scoped_refptr<gl::GLSurface> SurfaceFactoryOzone::CreateOffscreenGLSurface(
|
| + gl::GLImplementation implementation,
|
| + const gfx::Size& size) {
|
| + return nullptr;
|
| +}
|
| +
|
| std::unique_ptr<SurfaceOzoneEGL> SurfaceFactoryOzone::CreateEGLSurfaceForWidget(
|
| gfx::AcceleratedWidget widget) {
|
| return nullptr;
|
|
|