// 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_H_ #define REMOTING_HOST_LINUX_CLIPBOARD_PORTAL_H_ #include <gio/gio.h> #include "base/functional/callback.h" #include "base/memory/raw_ptr.h" #include "third_party/webrtc/modules/portal/portal_request_response.h" #include "third_party/webrtc/modules/portal/xdg_session_details.h" namespace remoting::xdg_portal { // Helper class to setup an XDG clipboard portal. It uses the same session // handle as the remote desktop and screencast portals (hence they should have // the same lifetime.) The methods on this class are called from the capturer // thread. class ClipboardPortal { … }; } // namespace remoting::xdg_portal #endif // REMOTING_HOST_LINUX_CLIPBOARD_PORTAL_H_