LibWeb: Move dictionaries to separate file

Co-Authored-By: Andrew Kaster <akaster@serenityos.org>
This commit is contained in:
stelar7 2023-12-15 23:40:52 +01:00 committed by Andrew Kaster
commit 3e0c0ce7ae
Notes: sideshowbarker 2024-07-17 07:09:53 +09:00
7 changed files with 170 additions and 10 deletions

View file

@ -10,15 +10,7 @@
#include <AK/String.h>
#include <LibJS/Forward.h>
#include <LibWeb/Bindings/PlatformObject.h>
// FIXME: Generate these from IDL
namespace Web::Bindings {
// https://w3c.github.io/webcrypto/#dfn-Algorithm
struct Algorithm {
String name;
};
};
#include <LibWeb/Crypto/CryptoBindings.h>
namespace Web::Crypto {