1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 05:27:46 +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

@ -33,6 +33,8 @@ private:
void prompt_helper(Optional<String> const&, Core::OpenMode const&);
RefPtr<GUI::Window> create_dummy_child_window(i32, i32);
virtual Messages::FileSystemAccessServer::ExposeWindowServerClientIdResponse expose_window_server_client_id() override;
HashMap<String, Core::OpenMode> m_approved_files;
};