WebContentServer.ipc 666 B

123456789101112131415161718
  1. endpoint WebContentServer = 89
  2. {
  3. Greet(i32 client_pid) => (i32 client_id, i32 server_pid)
  4. UpdateSystemTheme(Core::AnonymousBuffer theme_buffer) =|
  5. LoadURL(URL url) =|
  6. LoadHTML(String html, URL url) =|
  7. Paint(Gfx::IntRect content_rect, i32 shbuf_id) =|
  8. SetViewportRect(Gfx::IntRect rect) =|
  9. MouseDown(Gfx::IntPoint position, unsigned button, unsigned buttons, unsigned modifiers) =|
  10. MouseMove(Gfx::IntPoint position, unsigned button, unsigned buttons, unsigned modifiers) =|
  11. MouseUp(Gfx::IntPoint position, unsigned button, unsigned buttons, unsigned modifiers) =|
  12. KeyDown(i32 key, unsigned modifiers, u32 code_point) =|
  13. }