LibWeb: Add DeserializationMemory parameter to deserialization_steps()

We want to bring with us the value of DeserializationMemory to
Serializable::deserialization_steps() when doing sub serialization.
This commit is contained in:
Kenneth Myhra 2024-03-10 19:48:33 +01:00 committed by Andreas Kling
commit 31f345fcb0
Notes: sideshowbarker 2024-07-17 21:16:31 +09:00
12 changed files with 12 additions and 12 deletions

View file

@ -109,7 +109,7 @@ WebIDL::ExceptionOr<void> File::serialization_steps(HTML::SerializationRecord& r
return {};
}
WebIDL::ExceptionOr<void> File::deserialization_steps(ReadonlySpan<u32> const& record, size_t& position)
WebIDL::ExceptionOr<void> File::deserialization_steps(ReadonlySpan<u32> const& record, size_t& position, HTML::DeserializationMemory&)
{
auto& vm = this->vm();