diff options
author | Timothy Flynn <trflynn89@pm.me> | 2023-04-07 13:47:41 -0400 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2023-04-08 22:04:14 +0200 |
commit | 8dd5bf7f11689eacf76b3b1dd74b4d2c5eb1ec28 (patch) | |
tree | 08efcc41a01957c85c266bb8c0d2a91eca3642e3 /Userland | |
parent | f2efb97578ce8073e063d4c4a486f53e6817f492 (diff) | |
download | serenity-8dd5bf7f11689eacf76b3b1dd74b4d2c5eb1ec28.zip |
LibWeb: Add missing include to WebIDL::Promise
WebIDL::Promise is aliased to a JS::PromiseCapability. This missing
include would cause a compile error in an upcoming commit.
Diffstat (limited to 'Userland')
-rw-r--r-- | Userland/Libraries/LibWeb/WebIDL/Promise.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/WebIDL/Promise.h b/Userland/Libraries/LibWeb/WebIDL/Promise.h index 37c8f1e14c..7e0e8141c8 100644 --- a/Userland/Libraries/LibWeb/WebIDL/Promise.h +++ b/Userland/Libraries/LibWeb/WebIDL/Promise.h @@ -8,6 +8,7 @@ #pragma once #include <LibJS/Forward.h> +#include <LibJS/Runtime/PromiseCapability.h> #include <LibJS/Runtime/Value.h> #include <LibJS/SafeFunction.h> #include <LibWeb/Forward.h> |