mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-01 13:49:16 +00:00
LibWeb: Implement IDBFactory::delete_database
This commit is contained in:
parent
452506964c
commit
609f7aa659
Notes:
github-actions[bot]
2024-12-14 22:04:30 +00:00
Author: https://github.com/stelar7
Commit: 609f7aa659
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2696
Reviewed-by: https://github.com/gmta
3 changed files with 58 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue