From 476d4b4963defc3a851489801045784bc0a75a8d Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Sat, 28 Jan 2023 22:44:06 +0000 Subject: [PATCH] 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. --- Userland/Libraries/LibWeb/ARIA/ARIAMixin.h | 2 +- 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 +#include #include #include 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 +#include +#include namespace Web::ARIA {