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

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

Issue 1673063002: ozone/platform/wayland: Add some tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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_DISPLAY_H_ 5 #ifndef UI_OZONE_PLATFORM_WAYLAND_WAYLAND_DISPLAY_H_
6 #define UI_OZONE_PLATFORM_WAYLAND_WAYLAND_DISPLAY_H_ 6 #define UI_OZONE_PLATFORM_WAYLAND_WAYLAND_DISPLAY_H_
7 7
8 #include <map> 8 #include <map>
9 9
10 #include "base/message_loop/message_pump_libevent.h" 10 #include "base/message_loop/message_pump_libevent.h"
11 #include "ui/events/platform/platform_event_source.h" 11 #include "ui/events/platform/platform_event_source.h"
12 #include "ui/gfx/native_widget_types.h" 12 #include "ui/gfx/native_widget_types.h"
13 #include "ui/ozone/platform/wayland/wayland_object.h" 13 #include "ui/ozone/platform/wayland/wayland_object.h"
14 14
15 namespace ui { 15 namespace ui {
16 16
17 class WaylandWindow; 17 class WaylandWindow;
18 18
19 class WaylandDisplay : public PlatformEventSource, 19 class WaylandDisplay : public PlatformEventSource,
20 public base::MessagePumpLibevent::Watcher { 20 public base::MessagePumpLibevent::Watcher {
21 public: 21 public:
22 WaylandDisplay(); 22 WaylandDisplay();
23 ~WaylandDisplay() override; 23 ~WaylandDisplay() override;
24 24
25 bool Initialize(); 25 bool Initialize();
26 26
27 // Flushes the Wayland connection. 27 // Flushes the Wayland connection.
28 void Flush(); 28 void Flush();
29 29
30 wl_display* display() { return display_.get(); }
30 wl_compositor* compositor() { return compositor_.get(); } 31 wl_compositor* compositor() { return compositor_.get(); }
31 wl_shm* shm() { return shm_.get(); } 32 wl_shm* shm() { return shm_.get(); }
32 xdg_shell* shell() { return shell_.get(); } 33 xdg_shell* shell() { return shell_.get(); }
33 34
34 WaylandWindow* GetWindow(gfx::AcceleratedWidget widget); 35 WaylandWindow* GetWindow(gfx::AcceleratedWidget widget);
35 void AddWindow(WaylandWindow* window); 36 void AddWindow(WaylandWindow* window);
36 void RemoveWindow(WaylandWindow* window); 37 void RemoveWindow(WaylandWindow* window);
37 38
38 private: 39 private:
39 // PlatformEventSource 40 // PlatformEventSource
(...skipping 24 matching lines...) Expand all
64 65
65 bool watching_ = false; 66 bool watching_ = false;
66 base::MessagePumpLibevent::FileDescriptorWatcher controller_; 67 base::MessagePumpLibevent::FileDescriptorWatcher controller_;
67 68
68 DISALLOW_COPY_AND_ASSIGN(WaylandDisplay); 69 DISALLOW_COPY_AND_ASSIGN(WaylandDisplay);
69 }; 70 };
70 71
71 } // namespace ui 72 } // namespace ui
72 73
73 #endif // UI_OZONE_PLATFORM_WAYLAND_WAYLAND_DISPLAY_H_ 74 #endif // UI_OZONE_PLATFORM_WAYLAND_WAYLAND_DISPLAY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698