diff options
author | Luke Wilde <lukew@serenityos.org> | 2021-09-02 02:12:49 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-09-02 09:12:17 +0200 |
commit | 1d8f8ea5b141d969803ba060cd0f15f2137a1758 (patch) | |
tree | 4eea8cadebd9e5247bc009d472cd5e8d617ce67d /Meta/Lagom/Tools | |
parent | dd1a49ff93cfed8bfaaaa90afdc2b75b280099df (diff) | |
download | serenity-1d8f8ea5b141d969803ba060cd0f15f2137a1758.zip |
LibWeb: Add initial support for AbortController and AbortSignal
The DOM specification says that the primary use case for these is to
give Promises abort semantics. It is also a prerequisite for Fetch,
as it is used to make Fetch abortable.
a
Diffstat (limited to 'Meta/Lagom/Tools')
-rw-r--r-- | Meta/Lagom/Tools/CodeGenerators/LibWeb/WrapperGenerator.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Meta/Lagom/Tools/CodeGenerators/LibWeb/WrapperGenerator.cpp b/Meta/Lagom/Tools/CodeGenerators/LibWeb/WrapperGenerator.cpp index 436bf956be..89cc66fcfc 100644 --- a/Meta/Lagom/Tools/CodeGenerators/LibWeb/WrapperGenerator.cpp +++ b/Meta/Lagom/Tools/CodeGenerators/LibWeb/WrapperGenerator.cpp @@ -1223,6 +1223,7 @@ void generate_prototype_implementation(IDL::Interface const& interface) #include <LibJS/Runtime/TypedArray.h> #include <LibWeb/Bindings/@prototype_class@.h> #include <LibWeb/Bindings/@wrapper_class@.h> +#include <LibWeb/Bindings/AbortSignalWrapper.h> #include <LibWeb/Bindings/CSSStyleDeclarationWrapper.h> #include <LibWeb/Bindings/CSSStyleSheetWrapper.h> #include <LibWeb/Bindings/CanvasRenderingContext2DWrapper.h> |