WebDriverSessionClient.ipc 704 B

123456789101112131415161718192021222324
  1. #include <AK/URL.h>
  2. #include <AK/Vector.h>
  3. #include <LibGfx/Point.h>
  4. #include <LibGfx/Rect.h>
  5. #include <LibGfx/ShareableBitmap.h>
  6. #include <LibGfx/Size.h>
  7. #include <LibWeb/Cookie/Cookie.h>
  8. #include <LibWeb/Cookie/ParsedCookie.h>
  9. #include <LibWeb/WebDriver/ExecuteScript.h>
  10. // FIXME: This isn't used here, but the generated IPC fails to compile without this include.
  11. #include <LibWeb/WebDriver/Response.h>
  12. endpoint WebDriverSessionClient {
  13. quit() =|
  14. get_title() => (String title)
  15. refresh() =|
  16. back() =|
  17. forward() =|
  18. get_all_cookies() => (Vector<Web::Cookie::Cookie> cookies)
  19. add_cookie(Web::Cookie::ParsedCookie cookie) =|
  20. update_cookie(Web::Cookie::Cookie cookie) =|
  21. }