LibWeb/IDB: Implement store_a_record_into_an_object_store

This commit is contained in:
stelar7 2025-04-11 11:38:29 +02:00 committed by Andrew Kaster
commit fb17dae42b
Notes: github-actions[bot] 2025-04-23 18:37:08 +00:00
6 changed files with 147 additions and 0 deletions

View file

@ -49,6 +49,8 @@ public:
GC::Ref<Database> database() const { return m_database; }
void remove_records_in_range(GC::Ref<IDBKeyRange> range);
bool has_record_with_key(GC::Ref<Key> key);
void store_a_record(Record const& record);
protected:
virtual void visit_edges(Visitor&) override;