diff options
author | Timothy Flynn <trflynn89@pm.me> | 2022-11-11 13:46:22 -0500 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-11-11 22:03:23 +0000 |
commit | 7f142745e27d063c454e427bf718985b5a7cfb25 (patch) | |
tree | 9ea74a6d248d57747faf5333a21829eef4a8f7cf /Userland/Applications/Browser/WebDriverConnection.h | |
parent | 24fb7cd0ad23b5501ec6f0f713421101995f78bd (diff) | |
download | serenity-7f142745e27d063c454e427bf718985b5a7cfb25.zip |
Browser+WebContent+WebDriver: Move Back, Forward, Refresh to WebContent
Diffstat (limited to 'Userland/Applications/Browser/WebDriverConnection.h')
-rw-r--r-- | Userland/Applications/Browser/WebDriverConnection.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Userland/Applications/Browser/WebDriverConnection.h b/Userland/Applications/Browser/WebDriverConnection.h index 55151da325..2baa106517 100644 --- a/Userland/Applications/Browser/WebDriverConnection.h +++ b/Userland/Applications/Browser/WebDriverConnection.h @@ -39,9 +39,6 @@ public: virtual void quit() override; virtual Messages::WebDriverSessionClient::GetTitleResponse get_title() override; - virtual void refresh() override; - virtual void back() override; - virtual void forward() override; private: WebDriverConnection(NonnullOwnPtr<Core::Stream::LocalSocket> socket, NonnullRefPtr<BrowserWindow> browser_window); |