mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-10-31 13:20:59 +00:00 
			
		
		
		
	 53394230ca
			
		
	
	
		53394230ca
		
	
	
	
	
		
			
			This is necessary to avoid a circular reference when including Serializable.h in DOMException.h. This moves the definition of SerializationRecord, SerializationMemory, and DeserializationMemory into LibWeb/Forward.h so that Serializable.h only needs to include LibWeb/Forward.h.
		
			
				
	
	
		
			27 lines
		
	
	
	
		
			902 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
	
		
			902 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2024, Kenneth Myhra <kennethmyhra@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <LibWeb/Forward.h>
 | |
| #include <LibWeb/HTML/StructuredSerializeTypes.h>
 | |
| 
 | |
| namespace Web::Bindings {
 | |
| 
 | |
| // https://html.spec.whatwg.org/multipage/structured-data.html#serializable-objects
 | |
| class Serializable {
 | |
| public:
 | |
|     virtual ~Serializable() = default;
 | |
| 
 | |
|     virtual StringView interface_name() const = 0;
 | |
| 
 | |
|     // https://html.spec.whatwg.org/multipage/structured-data.html#serialization-steps
 | |
|     virtual WebIDL::ExceptionOr<void> serialization_steps(HTML::SerializationRecord&, bool for_storage, HTML::SerializationMemory&) = 0;
 | |
|     // https://html.spec.whatwg.org/multipage/structured-data.html#deserialization-steps
 | |
|     virtual WebIDL::ExceptionOr<void> deserialization_steps(ReadonlySpan<u32> const&, size_t& position, HTML::DeserializationMemory&) = 0;
 | |
| };
 | |
| 
 | |
| }
 |