summaryrefslogtreecommitdiff
path: root/Userland/Services/WebContent/WebContentServer.ipc
blob: d598c4ea9271202dcb00e157b6522368f66da027 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
endpoint WebContentServer = 89
{
    Greet() => (i32 client_id)

    UpdateSystemTheme(Core::AnonymousBuffer theme_buffer) =|

    LoadURL(URL url) =|
    LoadHTML(String html, URL url) =|

    AddBackingStore(i32 backing_store_id, Gfx::ShareableBitmap bitmap) =|
    RemoveBackingStore(i32 backing_store_id) =|

    Paint(Gfx::IntRect content_rect, i32 backing_store_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) =|

    KeyDown(i32 key, unsigned modifiers, u32 code_point) =|

    DebugRequest(String request, String argument) =|
}