LibWeb: Implement IDBFactory::delete_database

This commit is contained in:
stelar7 2024-12-01 21:12:35 +01:00 committed by Jelle Raaijmakers
commit 609f7aa659
Notes: github-actions[bot] 2024-12-14 22:04:30 +00:00
3 changed files with 58 additions and 1 deletions

View file

@ -21,6 +21,8 @@ public:
virtual ~IDBFactory() override;
WebIDL::ExceptionOr<GC::Ref<IDBOpenDBRequest>> open(String const& name, Optional<u64> version);
WebIDL::ExceptionOr<GC::Ref<IDBOpenDBRequest>> delete_database(String const& name);
WebIDL::ExceptionOr<i8> cmp(JS::Value first, JS::Value second);
protected: