From c64da0d00c68c92a339b3aa8d4ead62c2a8c1b10 Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Fri, 11 Nov 2022 13:58:20 -0500 Subject: [PATCH] Browser+WebDriver: Add missing header includes These are currently being included transitively, and will cause an error when those intermediate includes are removed. --- Userland/Applications/Browser/Tab.h | 2 ++ Userland/Services/WebDriver/Client.cpp | 2 ++ Userland/Services/WebDriver/Session.cpp | 2 ++ 3 files changed, 6 insertions(+) diff --git a/Userland/Applications/Browser/Tab.h b/Userland/Applications/Browser/Tab.h index 2334631094..3dd7f54d43 100644 --- a/Userland/Applications/Browser/Tab.h +++ b/Userland/Applications/Browser/Tab.h @@ -14,6 +14,8 @@ #include #include #include +#include +#include #include namespace WebView { diff --git a/Userland/Services/WebDriver/Client.cpp b/Userland/Services/WebDriver/Client.cpp index a1ca123bdf..122a82e50c 100644 --- a/Userland/Services/WebDriver/Client.cpp +++ b/Userland/Services/WebDriver/Client.cpp @@ -9,7 +9,9 @@ */ #include +#include #include +#include #include #include #include diff --git a/Userland/Services/WebDriver/Session.cpp b/Userland/Services/WebDriver/Session.cpp index a483b3f087..1dfdbbec2b 100644 --- a/Userland/Services/WebDriver/Session.cpp +++ b/Userland/Services/WebDriver/Session.cpp @@ -11,6 +11,8 @@ #include "Session.h" #include "BrowserConnection.h" #include "Client.h" +#include +#include #include #include #include