diff options
author | Timothy Flynn <trflynn89@pm.me> | 2022-11-10 21:00:27 -0500 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-11-11 11:36:07 +0000 |
commit | 31469ee45a449350460dc250d6962628638ce63e (patch) | |
tree | a9b416ab2eb6a73e482b263d978fd75495a5fcec /Userland/Applications/Browser/Tab.h | |
parent | 0b9803dc9369deb5784d99e481cc06b0f8dc1743 (diff) | |
download | serenity-31469ee45a449350460dc250d6962628638ce63e.zip |
Browser+WebContent+WebDriver: Move Execute Async Script to WebContent
With this, WebDriverEndpoints is unused and removed :^)
Diffstat (limited to 'Userland/Applications/Browser/Tab.h')
-rw-r--r-- | Userland/Applications/Browser/Tab.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Userland/Applications/Browser/Tab.h b/Userland/Applications/Browser/Tab.h index b2886d0068..c016783209 100644 --- a/Userland/Applications/Browser/Tab.h +++ b/Userland/Applications/Browser/Tab.h @@ -8,7 +8,6 @@ #pragma once #include "History.h" -#include "WebDriverEndpoints.h" #include <AK/Optional.h> #include <AK/URL.h> #include <LibGUI/ActionGroup.h> @@ -74,7 +73,6 @@ public: Function<OrderedHashMap<String, String>()> on_get_session_storage_entries; Function<Gfx::ShareableBitmap()> on_take_screenshot; - WebDriverEndpoints& webdriver_endpoints() { return m_webdriver_endpoints; } void enable_webdriver_mode(); enum class InspectorTarget { @@ -143,8 +141,6 @@ private: Optional<URL> m_navigating_url; - WebDriverEndpoints m_webdriver_endpoints {}; - bool m_loaded { false }; bool m_is_history_navigation { false }; }; |