1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 07:58:11 +00:00

LibWeb: Handle WebContent process crashes gracefully :^)

The OOPWV will now detect WebContent process crashes/disconnections and
simply create a new WebContent process in its place. We also generate a
little error page with a link to the crashing URL so you can reload and
try again.

This a huge step forward for OOPWV since it now has a feature that IPWV
can never replicate. :^)
This commit is contained in:
Andreas Kling 2021-01-30 18:20:40 +01:00
parent 322936115e
commit f3e85e43c7
4 changed files with 80 additions and 35 deletions

View file

@ -37,6 +37,12 @@ WebContentClient::WebContentClient(OutOfProcessWebView& view)
handshake();
}
void WebContentClient::die()
{
ASSERT(on_web_content_process_crash);
on_web_content_process_crash();
}
void WebContentClient::handshake()
{
auto response = send_sync<Messages::WebContentServer::Greet>(getpid());