mirror of
https://github.com/RGBCube/serenity
synced 2025-05-23 19:55:08 +00:00

Port the WebContent service to the new MultiInstance mechanism that Sergey added. This means that every new WebContentView gets its very own segregated WebContent process.
15 lines
545 B
Text
15 lines
545 B
Text
endpoint WebContentServer = 89
|
|
{
|
|
Greet(i32 client_pid) => (i32 client_id, i32 server_pid)
|
|
|
|
UpdateSystemTheme(i32 shbuf_id) =|
|
|
|
|
LoadURL(URL url) =|
|
|
|
|
Paint(Gfx::IntRect content_rect, i32 shbuf_id) =|
|
|
SetViewportRect(Gfx::IntRect rect) =|
|
|
|
|
MouseDown(Gfx::IntPoint position, unsigned button, unsigned buttons, unsigned modifiers) =|
|
|
MouseMove(Gfx::IntPoint position, unsigned button, unsigned buttons, unsigned modifiers) =|
|
|
MouseUp(Gfx::IntPoint position, unsigned button, unsigned buttons, unsigned modifiers) =|
|
|
}
|