summaryrefslogtreecommitdiff
path: root/Userland/Applications/Browser/Browser.h
diff options
context:
space:
mode:
authorTimothy Flynn <trflynn89@pm.me>2022-11-11 14:14:58 -0500
committerLinus Groh <mail@linusgroh.de>2022-11-11 22:03:23 +0000
commit7972916be789e1ff7ce9ac8cadd37e512f92e11a (patch)
tree62271d08d9a1b4731b47bbff8f314e33bb70cf9c /Userland/Applications/Browser/Browser.h
parentc64da0d00c68c92a339b3aa8d4ead62c2a8c1b10 (diff)
downloadserenity-7972916be789e1ff7ce9ac8cadd37e512f92e11a.zip
Browser+WebDriver: Remove the connection between Browser and WebDriver
WebDriver now only has an IPC connection to WebContent. WebDriver still launches the browser, but now when the session ends, we simply send a SIGTERM signal to the browser.
Diffstat (limited to 'Userland/Applications/Browser/Browser.h')
-rw-r--r--Userland/Applications/Browser/Browser.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/Userland/Applications/Browser/Browser.h b/Userland/Applications/Browser/Browser.h
index ad901076c3..10d199c71f 100644
--- a/Userland/Applications/Browser/Browser.h
+++ b/Userland/Applications/Browser/Browser.h
@@ -8,7 +8,6 @@
#include <AK/String.h>
#include <Applications/Browser/IconBag.h>
-#include <Applications/Browser/WebDriverConnection.h>
namespace Browser {
@@ -20,7 +19,6 @@ extern Vector<String> g_proxies;
extern HashMap<String, size_t> g_proxy_mappings;
extern bool g_content_filters_enabled;
extern IconBag g_icon_bag;
-extern RefPtr<Browser::WebDriverConnection> g_web_driver_connection;
extern String g_webdriver_content_ipc_path;
}