LibWeb/IDB: Implement generate_a_key

This commit is contained in:
stelar7 2025-04-11 11:25:56 +02:00 committed by Andrew Kaster
commit dbe0db0cab
Notes: github-actions[bot] 2025-04-23 18:37:33 +00:00
3 changed files with 33 additions and 2 deletions

View file

@ -36,5 +36,6 @@ bool check_that_a_key_could_be_injected_into_a_value(JS::Realm&, JS::Value, KeyP
void fire_an_error_event(JS::Realm&, GC::Ref<IDBRequest>);
void fire_a_success_event(JS::Realm&, GC::Ref<IDBRequest>);
GC::Ref<IDBRequest> asynchronously_execute_a_request(JS::Realm&, IDBRequestSource, GC::Ref<GC::Function<WebIDL::ExceptionOr<JS::Value>()>>, GC::Ptr<IDBRequest> = nullptr);
ErrorOr<u64> generate_a_key(GC::Ref<ObjectStore>);
}