1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 15:27:35 +00:00

LibWeb+WebContent: Add EventLoopPlugin::quit() virtual

This allows you to customize breaking out of the system event loop.
This commit is contained in:
Andreas Kling 2022-10-08 10:54:52 +02:00
parent a0d5724a58
commit 829186af7d
4 changed files with 9 additions and 1 deletions

View file

@ -29,6 +29,7 @@
#include <LibWeb/Loader/ResourceLoader.h>
#include <LibWeb/Painting/PaintableBox.h>
#include <LibWeb/Painting/StackingContext.h>
#include <LibWeb/Platform/EventLoopPlugin.h>
#include <WebContent/ConnectionFromClient.h>
#include <WebContent/PageHost.h>
#include <WebContent/WebContentClientEndpoint.h>
@ -45,7 +46,7 @@ ConnectionFromClient::ConnectionFromClient(NonnullOwnPtr<Core::Stream::LocalSock
void ConnectionFromClient::die()
{
Core::EventLoop::current().quit(0);
Web::Platform::EventLoopPlugin::the().quit();
}
Web::Page& ConnectionFromClient::page()