diff options
Diffstat (limited to 'Userland/Services')
-rw-r--r-- | Userland/Services/WebDriver/Client.cpp | 2 | ||||
-rw-r--r-- | Userland/Services/WebDriver/Session.cpp | 2 |
2 files changed, 4 insertions, 0 deletions
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 <AK/Debug.h> +#include <AK/JsonObject.h> #include <AK/JsonParser.h> +#include <AK/JsonValue.h> #include <LibCore/DateTime.h> #include <LibCore/MemoryStream.h> #include <LibHTTP/HttpRequest.h> 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 <AK/JsonObject.h> +#include <AK/JsonParser.h> #include <AK/NumericLimits.h> #include <AK/Time.h> #include <LibCore/LocalServer.h> |