ladybird/Userland/Services/ImageDecoder/ImageDecoderServer.ipc
Andrew Kaster 4b5541e1b7 Everywhere: Transition ImageDecoder to be single-instance, owned by UI
This is the same behavior as RequestServer, with the added benefit that
we know how to gracefully reconnect ImageDecoder to all WebContent
processes on restart.
2024-06-26 16:09:33 -06:00

10 lines
307 B
Plaintext

#include <LibCore/AnonymousBuffer.h>
endpoint ImageDecoderServer
{
decode_image(Core::AnonymousBuffer data, Optional<Gfx::IntSize> ideal_size, Optional<ByteString> mime_type) => (i64 image_id)
cancel_decoding(i64 image_id) =|
connect_new_clients(size_t count) => (Vector<IPC::File> sockets)
}