mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-10-30 21:01:00 +00:00 
			
		
		
		
	
		
			
	
	
		
			25 lines
		
	
	
	
		
			476 B
		
	
	
	
		
			C
		
	
	
	
	
	
		
		
			
		
	
	
			25 lines
		
	
	
	
		
			476 B
		
	
	
	
		
			C
		
	
	
	
	
	
|   | /*
 | ||
|  |  * Copyright (c) 2023, Bastiaan van der Plaat <bastiaan.v.d.plaat@gmail.com> | ||
|  |  * | ||
|  |  * SPDX-License-Identifier: BSD-2-Clause | ||
|  |  */ | ||
|  | 
 | ||
|  | #pragma once
 | ||
|  | 
 | ||
|  | #include <LibWeb/Fetch/BodyInit.h>
 | ||
|  | #include <LibWeb/WebIDL/ExceptionOr.h>
 | ||
|  | 
 | ||
|  | namespace Web::HTML { | ||
|  | 
 | ||
|  | class NavigatorBeaconMixin { | ||
|  | public: | ||
|  |     WebIDL::ExceptionOr<bool> send_beacon(String const& url, Optional<Fetch::BodyInit> const& data = {}); | ||
|  | 
 | ||
|  | private: | ||
|  |     virtual ~NavigatorBeaconMixin() = default; | ||
|  | 
 | ||
|  |     friend class Navigator; | ||
|  | }; | ||
|  | 
 | ||
|  | } |