diff options
Diffstat (limited to 'Userland/Services/FileSystemAccessServer/ClientConnection.cpp')
-rw-r--r-- | Userland/Services/FileSystemAccessServer/ClientConnection.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Userland/Services/FileSystemAccessServer/ClientConnection.cpp b/Userland/Services/FileSystemAccessServer/ClientConnection.cpp index aaa2e78055..2a5939a590 100644 --- a/Userland/Services/FileSystemAccessServer/ClientConnection.cpp +++ b/Userland/Services/FileSystemAccessServer/ClientConnection.cpp @@ -157,4 +157,9 @@ void ClientConnection::prompt_helper(Optional<String> const& user_picked_file, C } } +Messages::FileSystemAccessServer::ExposeWindowServerClientIdResponse ClientConnection::expose_window_server_client_id() +{ + return GUI::WindowServerConnection::the().expose_client_id(); +} + } |