diff options
author | Linus Groh <mail@linusgroh.de> | 2023-01-28 22:44:06 +0000 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2023-01-29 00:02:55 +0000 |
commit | 476d4b4963defc3a851489801045784bc0a75a8d (patch) | |
tree | d1536b0d72509d5f8df436536c2806a08b8ddd01 /Userland | |
parent | 8556d472400605d23d326816f497f4164b620b1d (diff) | |
download | serenity-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.h | 2 | ||||
-rw-r--r-- | Userland/Libraries/LibWeb/ARIA/Roles.h | 3 |
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 { |