diff options
author | Timothy Flynn <trflynn89@pm.me> | 2022-12-15 09:18:52 -0500 |
---|---|---|
committer | Andrew Kaster <andrewdkaster@gmail.com> | 2022-12-25 07:58:58 -0700 |
commit | e5192073d9a6fb31423ff61eafaa7b57681d5adf (patch) | |
tree | 5ec9ad5e9593d9258fd45180f78ae88f01f1eed6 /Ladybird/Tab.h | |
parent | ea26e4559415b0c188e310b1f3085626a0edb42b (diff) | |
download | serenity-e5192073d9a6fb31423ff61eafaa7b57681d5adf.zip |
Ladybird/WebDriver: Move to using local socket files for WebDriver IPC
This allows us to use standard Serenity IPC infrastructure rather than
manually creating FD-passing sockets. This also lets us use Serenity's
WebDriver Session class, removing the copy previously used in Ladybird.
This ensures any changes to Session in the future will be picked up by
Ladybird for free.
Diffstat (limited to 'Ladybird/Tab.h')
-rw-r--r-- | Ladybird/Tab.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ladybird/Tab.h b/Ladybird/Tab.h index 77ab896c7f..be25953fba 100644 --- a/Ladybird/Tab.h +++ b/Ladybird/Tab.h @@ -22,7 +22,7 @@ class BrowserWindow; class Tab final : public QWidget { Q_OBJECT public: - Tab(BrowserWindow* window, int webdriver_fd_passing_socket); + Tab(BrowserWindow* window, StringView webdriver_content_ipc_path); WebContentView& view() { return *m_view; } |