diff options
author | Linus Groh <mail@linusgroh.de> | 2021-12-13 20:48:27 +0000 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-12-14 09:01:06 +0100 |
commit | 615be9eb7ca88b20a13021cdf3eaf058c9059599 (patch) | |
tree | 03850ea8c22d72e09dc03f2e7ece2b8b7aaaa79a /Userland/Libraries/LibWeb/Bindings | |
parent | ce6c515873072c4a51fe5cbc02755e9de7bbe952 (diff) | |
download | serenity-615be9eb7ca88b20a13021cdf3eaf058c9059599.zip |
LibWeb: Add the SubtleCrypto interface
Just some boilerplate code to get started :^)
This adds both the SubtleCrypto constructor to the window object, as
well as the crypto.subtle instance attribute.
Diffstat (limited to 'Userland/Libraries/LibWeb/Bindings')
-rw-r--r-- | Userland/Libraries/LibWeb/Bindings/WindowObjectHelper.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/Bindings/WindowObjectHelper.h b/Userland/Libraries/LibWeb/Bindings/WindowObjectHelper.h index 3faa49a98e..b7f13c05e6 100644 --- a/Userland/Libraries/LibWeb/Bindings/WindowObjectHelper.h +++ b/Userland/Libraries/LibWeb/Bindings/WindowObjectHelper.h @@ -261,6 +261,8 @@ #include <LibWeb/Bindings/StyleSheetPrototype.h> #include <LibWeb/Bindings/SubmitEventConstructor.h> #include <LibWeb/Bindings/SubmitEventPrototype.h> +#include <LibWeb/Bindings/SubtleCryptoConstructor.h> +#include <LibWeb/Bindings/SubtleCryptoPrototype.h> #include <LibWeb/Bindings/TextConstructor.h> #include <LibWeb/Bindings/TextEncoderConstructor.h> #include <LibWeb/Bindings/TextEncoderPrototype.h> @@ -412,6 +414,7 @@ ADD_WINDOW_OBJECT_INTERFACE(StyleSheet) \ ADD_WINDOW_OBJECT_INTERFACE(StyleSheetList) \ ADD_WINDOW_OBJECT_INTERFACE(SubmitEvent) \ + ADD_WINDOW_OBJECT_INTERFACE(SubtleCrypto) \ ADD_WINDOW_OBJECT_INTERFACE(SVGElement) \ ADD_WINDOW_OBJECT_INTERFACE(SVGGeometryElement) \ ADD_WINDOW_OBJECT_INTERFACE(SVGGraphicsElement) \ |