summaryrefslogtreecommitdiff
path: root/Userland
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2023-01-28 22:44:06 +0000
committerLinus Groh <mail@linusgroh.de>2023-01-29 00:02:55 +0000
commit476d4b4963defc3a851489801045784bc0a75a8d (patch)
treed1536b0d72509d5f8df436536c2806a08b8ddd01 /Userland
parent8556d472400605d23d326816f497f4164b620b1d (diff)
downloadserenity-476d4b4963defc3a851489801045784bc0a75a8d.zip
LibWeb: Remove no longer needed DeprecatedFlyString.h includes
ARIA roles no longer use DeprecatedFlyString, replace them with the forwarding header, and StringView.h in one case, for other things from AK used in those headers.
Diffstat (limited to 'Userland')
-rw-r--r--Userland/Libraries/LibWeb/ARIA/ARIAMixin.h2
-rw-r--r--Userland/Libraries/LibWeb/ARIA/Roles.h3
2 files changed, 3 insertions, 2 deletions
diff --git a/Userland/Libraries/LibWeb/ARIA/ARIAMixin.h b/Userland/Libraries/LibWeb/ARIA/ARIAMixin.h
index 45b097f96a..84ba7eeee9 100644
--- a/Userland/Libraries/LibWeb/ARIA/ARIAMixin.h
+++ b/Userland/Libraries/LibWeb/ARIA/ARIAMixin.h
@@ -6,7 +6,7 @@
#pragma once
-#include <AK/DeprecatedFlyString.h>
+#include <AK/Forward.h>
#include <LibWeb/ARIA/Roles.h>
#include <LibWeb/WebIDL/ExceptionOr.h>
diff --git a/Userland/Libraries/LibWeb/ARIA/Roles.h b/Userland/Libraries/LibWeb/ARIA/Roles.h
index 734e3b7f17..630bcdac71 100644
--- a/Userland/Libraries/LibWeb/ARIA/Roles.h
+++ b/Userland/Libraries/LibWeb/ARIA/Roles.h
@@ -6,7 +6,8 @@
#pragma once
-#include <AK/DeprecatedFlyString.h>
+#include <AK/Forward.h>
+#include <AK/StringView.h>
namespace Web::ARIA {