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

Side by Side Diff: ui/ozone/platform/wayland/wayland_surface_factory.h

Issue 1673063002: ozone/platform/wayland: Add some tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use two WaitableEvents to prevent race, re-arrange some definitions, other minor test robustness fi… Created 4 years, 10 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_WAYLAND_WAYLAND_SURFACE_FACTORY_H_ 5 #ifndef UI_OZONE_PLATFORM_WAYLAND_WAYLAND_SURFACE_FACTORY_H_
6 #define UI_OZONE_PLATFORM_WAYLAND_WAYLAND_SURFACE_FACTORY_H_ 6 #define UI_OZONE_PLATFORM_WAYLAND_WAYLAND_SURFACE_FACTORY_H_
7 7
8 #include "ui/ozone/ozone_export.h"
8 #include "ui/ozone/public/surface_factory_ozone.h" 9 #include "ui/ozone/public/surface_factory_ozone.h"
9 10
10 namespace ui { 11 namespace ui {
11 12
12 class WaylandDisplay; 13 class WaylandDisplay;
13 14
14 class WaylandSurfaceFactory : public SurfaceFactoryOzone { 15 class OZONE_EXPORT WaylandSurfaceFactory : public SurfaceFactoryOzone {
15 public: 16 public:
16 WaylandSurfaceFactory(WaylandDisplay* display); 17 WaylandSurfaceFactory(WaylandDisplay* display);
17 ~WaylandSurfaceFactory() override; 18 ~WaylandSurfaceFactory() override;
18 19
19 intptr_t GetNativeDisplay() override; 20 intptr_t GetNativeDisplay() override;
20 const int32_t* GetEGLSurfaceProperties(const int32_t* desired_list) override; 21 const int32_t* GetEGLSurfaceProperties(const int32_t* desired_list) override;
21 bool LoadEGLGLES2Bindings( 22 bool LoadEGLGLES2Bindings(
22 AddGLLibraryCallback add_gl_library, 23 AddGLLibraryCallback add_gl_library,
23 SetGLGetProcAddressProcCallback set_gl_get_proc_address) override; 24 SetGLGetProcAddressProcCallback set_gl_get_proc_address) override;
24 scoped_ptr<SurfaceOzoneCanvas> CreateCanvasForWidget( 25 scoped_ptr<SurfaceOzoneCanvas> CreateCanvasForWidget(
(...skipping 10 matching lines...) Expand all
35 36
36 private: 37 private:
37 WaylandDisplay* display_; 38 WaylandDisplay* display_;
38 39
39 DISALLOW_COPY_AND_ASSIGN(WaylandSurfaceFactory); 40 DISALLOW_COPY_AND_ASSIGN(WaylandSurfaceFactory);
40 }; 41 };
41 42
42 } // namespace ui 43 } // namespace ui
43 44
44 #endif // UI_OZONE_PLATFORM_WAYLAND_WAYLAND_SURFACE_FACTORY_H_ 45 #endif // UI_OZONE_PLATFORM_WAYLAND_WAYLAND_SURFACE_FACTORY_H_
OLDNEW
« no previous file with comments | « ui/ozone/platform/wayland/wayland_display_unittest.cc ('k') | ui/ozone/platform/wayland/wayland_surface_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698