1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 15:37:46 +00:00

Browser: Set 'webdriver-active flag' when creating a new Tab

This commit is contained in:
Linus Groh 2022-10-12 23:51:37 +02:00 committed by Andreas Kling
parent 3f24a444f9
commit 5681115744
3 changed files with 14 additions and 3 deletions

View file

@ -8,6 +8,7 @@
#include <AK/String.h>
#include <Applications/Browser/IconBag.h>
#include <Applications/Browser/WebDriverConnection.h>
namespace Browser {
@ -19,5 +20,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;
}