// 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 REMOTING_HOST_LINUX_CLIPBOARD_PORTAL_INJECTOR_H_ #define REMOTING_HOST_LINUX_CLIPBOARD_PORTAL_INJECTOR_H_ #include <gio/gio.h> #include <map> #include <unordered_set> #include "base/functional/callback.h" #include "base/memory/raw_ptr.h" #include "base/sequence_checker.h" #include "third_party/webrtc/modules/portal/xdg_session_details.h" namespace remoting::xdg_portal { // This class is used by the `ChromotingInputThread` to inject input into the // wayland remote host using XDG desktop portal APIs. class ClipboardPortalInjector { … }; } // namespace remoting::xdg_portal #endif // REMOTING_HOST_LINUX_CLIPBOARD_PORTAL_INJECTOR_H_