2024-02-23 17:25:37 +01:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2024, Kenneth Myhra <kennethmyhra@serenityos.org>
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2024-11-22 11:51:40 +01:00
|
|
|
#include <LibWeb/Forward.h>
|
|
|
|
|
#include <LibWeb/HTML/StructuredSerializeTypes.h>
|
2024-02-23 17:25:37 +01:00
|
|
|
|
|
|
|
|
namespace Web::Bindings {
|
|
|
|
|
|
|
|
|
|
// https://html.spec.whatwg.org/multipage/structured-data.html#serializable-objects
|
|
|
|
|
class Serializable {
|
|
|
|
|
public:
|
|
|
|
|
virtual ~Serializable() = default;
|
|
|
|
|
|
2025-07-14 17:15:09 +01:00
|
|
|
virtual HTML::SerializeType serialize_type() const = 0;
|
2024-02-23 17:25:37 +01:00
|
|
|
|
|
|
|
|
// https://html.spec.whatwg.org/multipage/structured-data.html#serialization-steps
|
2025-07-17 09:51:04 -04:00
|
|
|
virtual WebIDL::ExceptionOr<void> serialization_steps(HTML::TransferDataEncoder&, bool for_storage, HTML::SerializationMemory&) = 0;
|
|
|
|
|
|
2024-02-23 17:25:37 +01:00
|
|
|
// https://html.spec.whatwg.org/multipage/structured-data.html#deserialization-steps
|
2025-07-17 09:51:04 -04:00
|
|
|
virtual WebIDL::ExceptionOr<void> deserialization_steps(HTML::TransferDataDecoder&, HTML::DeserializationMemory&) = 0;
|
2024-02-23 17:25:37 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|