diff options
Diffstat (limited to 'Userland/Services/WebDriver/Session.h')
-rw-r--r-- | Userland/Services/WebDriver/Session.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Userland/Services/WebDriver/Session.h b/Userland/Services/WebDriver/Session.h index 31e55a7be7..426df466bd 100644 --- a/Userland/Services/WebDriver/Session.h +++ b/Userland/Services/WebDriver/Session.h @@ -19,6 +19,8 @@ namespace WebDriver { +struct LaunchBrowserCallbacks; + class Session { public: Session(unsigned session_id, NonnullRefPtr<Client> client, Web::WebDriver::LadybirdOptions options); @@ -32,7 +34,7 @@ public: return *m_web_content_connection; } - ErrorOr<void> start(); + ErrorOr<void> start(LaunchBrowserCallbacks const&); Web::WebDriver::Response stop(); private: |