mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-04 07:10:57 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			421 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			421 B
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
 * Copyright (c) 2023, Shannon Booth <shannon@serenityos.org>
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier: BSD-2-Clause
 | 
						|
 */
 | 
						|
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include <AK/Optional.h>
 | 
						|
#include <LibJS/Heap/GCPtr.h>
 | 
						|
#include <LibWeb/WebIDL/CallbackType.h>
 | 
						|
 | 
						|
namespace Web::Streams {
 | 
						|
 | 
						|
// https://streams.spec.whatwg.org/#dictdef-queuingstrategy
 | 
						|
struct QueuingStrategy {
 | 
						|
    Optional<double> high_water_mark;
 | 
						|
    JS::GCPtr<WebIDL::CallbackType> size;
 | 
						|
};
 | 
						|
 | 
						|
}
 |