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

    UpdateSystemTheme(Core::AnonymousBuffer theme_buffer) =|
    UpdateScreenRect(Gfx::IntRect rect) =|

    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) =|
    MouseWheel(Gfx::IntPoint position, unsigned button, unsigned buttons, unsigned modifiers, i32 wheel_delta) =|

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

    DebugRequest(String request, String argument) =|
    GetSource() =|
    JSConsoleInitialize() =|
    JSConsoleInput(String js_source) =|
}