LibWeb/IDB: Resolve FIXME regarding removing from indecies

This commit is contained in:
stelar7 2025-05-13 23:09:28 +02:00 committed by Jelle Raaijmakers
commit 13674c1b32
Notes: github-actions[bot] 2025-05-14 15:18:50 +00:00
3 changed files with 12 additions and 1 deletions

View file

@ -45,6 +45,7 @@ public:
GC::ConservativeVector<IndexRecord> first_n_in_range(GC::Ref<IDBKeyRange> range, Optional<WebIDL::UnsignedLong> count);
u64 count_records_in_range(GC::Ref<IDBKeyRange> range);
void store_a_record(IndexRecord const& record);
void remove_records_with_value_in_range(GC::Ref<IDBKeyRange> range);
HTML::SerializationRecord referenced_value(IndexRecord const& index_record) const;