// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_EVENTS_PLATFORM_WAYLAND_WAYLAND_EVENT_WATCHER_GLIB_H_ #define UI_EVENTS_PLATFORM_WAYLAND_WAYLAND_EVENT_WATCHER_GLIB_H_ #include "base/memory/raw_ptr.h" #include "ui/events/platform/wayland/wayland_event_watcher.h" GPollFD; GSource; namespace ui { // WaylandEventWatcher implementation that uses Glib for event polling. // The event loop integration is done according to the manual available at // https://bit.ly/3tCjobF class WaylandEventWatcherGlib : public WaylandEventWatcher { … }; } // namespace ui #endif // UI_EVENTS_PLATFORM_WAYLAND_WAYLAND_EVENT_WATCHER_GLIB_H_