mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-10-27 19:34:14 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
	
		
			1,016 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
	
		
			1,016 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2022, Andreas Kling <andreas@ladybird.org>
 | |
|  * Copyright (c) 2022, Linus Groh <linusg@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <LibJS/Forward.h>
 | |
| #include <LibWeb/HighResolutionTime/DOMHighResTimeStamp.h>
 | |
| 
 | |
| namespace Web::HighResolutionTime {
 | |
| 
 | |
| DOMHighResTimeStamp estimated_monotonic_time_of_the_unix_epoch();
 | |
| DOMHighResTimeStamp get_time_origin_timestamp(JS::Object const&);
 | |
| DOMHighResTimeStamp coarsen_time(DOMHighResTimeStamp timestamp, bool cross_origin_isolated_capability = false);
 | |
| DOMHighResTimeStamp current_high_resolution_time(JS::Object const&);
 | |
| DOMHighResTimeStamp relative_high_resolution_time(DOMHighResTimeStamp, JS::Object const&);
 | |
| DOMHighResTimeStamp relative_high_resolution_coarsen_time(DOMHighResTimeStamp, JS::Object const&);
 | |
| DOMHighResTimeStamp coarsened_shared_current_time(bool cross_origin_isolated_capability = false);
 | |
| DOMHighResTimeStamp wall_clock_unsafe_current_time();
 | |
| DOMHighResTimeStamp unsafe_shared_current_time();
 | |
| 
 | |
| }
 | 
