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.
This commit is contained in:
Linus Groh 2023-01-28 22:44:06 +00:00
parent 8556d47240
commit 476d4b4963
Notes: sideshowbarker 2024-07-17 04:32:07 +09:00
2 changed files with 3 additions and 2 deletions

View File

@ -6,7 +6,7 @@
#pragma once
#include <AK/DeprecatedFlyString.h>
#include <AK/Forward.h>
#include <LibWeb/ARIA/Roles.h>
#include <LibWeb/WebIDL/ExceptionOr.h>

View File

@ -6,7 +6,8 @@
#pragma once
#include <AK/DeprecatedFlyString.h>
#include <AK/Forward.h>
#include <AK/StringView.h>
namespace Web::ARIA {