Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(264)

Side by Side Diff: ui/ozone/platform/x11/x11_surface_factory.h

Issue 2190353003: Delete old Ozone surface creation API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef UI_OZONE_PLATFORM_X11_X11_SURFACE_FACTORY_H_ 5 #ifndef UI_OZONE_PLATFORM_X11_X11_SURFACE_FACTORY_H_
6 #define UI_OZONE_PLATFORM_X11_X11_SURFACE_FACTORY_H_ 6 #define UI_OZONE_PLATFORM_X11_X11_SURFACE_FACTORY_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
11 #include "ui/gl/gl_surface.h" 11 #include "ui/gl/gl_surface.h"
12 #include "ui/ozone/public/surface_factory_ozone.h" 12 #include "ui/ozone/public/surface_factory_ozone.h"
13 13
14 namespace ui { 14 namespace ui {
15 15
16 // Handles creation of EGL and software surfaces for drawing in XWindow. 16 // Handles creation of EGL and software surfaces for drawing in XWindow.
17 class X11SurfaceFactory : public SurfaceFactoryOzone { 17 class X11SurfaceFactory : public SurfaceFactoryOzone {
18 public: 18 public:
19 X11SurfaceFactory(); 19 X11SurfaceFactory();
20 ~X11SurfaceFactory() override; 20 ~X11SurfaceFactory() override;
21 21
22 // SurfaceFactoryOzone: 22 // SurfaceFactoryOzone:
23 bool UseNewSurfaceAPI() override;
24 scoped_refptr<gl::GLSurface> CreateViewGLSurface( 23 scoped_refptr<gl::GLSurface> CreateViewGLSurface(
25 gl::GLImplementation implementation, 24 gl::GLImplementation implementation,
26 gfx::AcceleratedWidget widget) override; 25 gfx::AcceleratedWidget widget) override;
27 scoped_refptr<gl::GLSurface> CreateOffscreenGLSurface( 26 scoped_refptr<gl::GLSurface> CreateOffscreenGLSurface(
28 gl::GLImplementation implementation, 27 gl::GLImplementation implementation,
29 const gfx::Size& size) override; 28 const gfx::Size& size) override;
30 bool LoadEGLGLES2Bindings( 29 bool LoadEGLGLES2Bindings(
31 AddGLLibraryCallback add_gl_library, 30 AddGLLibraryCallback add_gl_library,
32 SetGLGetProcAddressProcCallback set_gl_get_proc_address) override; 31 SetGLGetProcAddressProcCallback set_gl_get_proc_address) override;
33 intptr_t GetNativeDisplay() override; 32 intptr_t GetNativeDisplay() override;
34 33
35 private: 34 private:
36 DISALLOW_COPY_AND_ASSIGN(X11SurfaceFactory); 35 DISALLOW_COPY_AND_ASSIGN(X11SurfaceFactory);
37 }; 36 };
38 37
39 } // namespace ui 38 } // namespace ui
40 39
41 #endif // UI_OZONE_PLATFORM_X11_X11_SURFACE_FACTORY_H_ 40 #endif // UI_OZONE_PLATFORM_X11_X11_SURFACE_FACTORY_H_
OLDNEW
« no previous file with comments | « ui/ozone/platform/wayland/wayland_surface_factory.cc ('k') | ui/ozone/platform/x11/x11_surface_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698