1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 03:57:43 +00:00

FileSystemAccessServer: Add expose_window_server_client_id()

This will expose the client id of the WindowServerConnection this
instance of FileSystemAccessServer is using.
This commit is contained in:
Timothy 2021-07-18 23:48:52 +10:00 committed by Andreas Kling
parent 38594dde79
commit f5e0475bdf
3 changed files with 9 additions and 0 deletions

View file

@ -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();
}
}