LibWeb+WebWorker: Add IPC messages to request and communicate shutdown

This commit is contained in:
Andrew Kaster 2024-07-09 03:00:06 -06:00 committed by Andreas Kling
commit 27ef9ffa8f
Notes: sideshowbarker 2024-07-17 04:01:41 +09:00
6 changed files with 25 additions and 0 deletions

View file

@ -21,6 +21,10 @@ class WebWorkerClient final
public:
explicit WebWorkerClient(NonnullOwnPtr<Core::LocalSocket>);
virtual void did_close_worker() override;
Function<void()> on_worker_close;
IPC::File dup_socket();
private: