summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/XHR/EventNames.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibWeb/XHR/EventNames.h')
-rw-r--r--Userland/Libraries/LibWeb/XHR/EventNames.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Libraries/LibWeb/XHR/EventNames.h b/Userland/Libraries/LibWeb/XHR/EventNames.h
index a543cea26c..0c23c1fb7c 100644
--- a/Userland/Libraries/LibWeb/XHR/EventNames.h
+++ b/Userland/Libraries/LibWeb/XHR/EventNames.h
@@ -6,8 +6,8 @@
#pragma once
-#include <AK/DeprecatedFlyString.h>
#include <AK/Error.h>
+#include <AK/FlyString.h>
namespace Web::XHR::EventNames {
@@ -21,7 +21,7 @@ namespace Web::XHR::EventNames {
__ENUMERATE_XHR_EVENT(timeout) \
__ENUMERATE_XHR_EVENT(loadend)
-#define __ENUMERATE_XHR_EVENT(name) extern DeprecatedFlyString name;
+#define __ENUMERATE_XHR_EVENT(name) extern FlyString name;
ENUMERATE_XHR_EVENTS
#undef __ENUMERATE_XHR_EVENT