mirror of
https://github.com/RGBCube/serenity
synced 2025-05-16 14:44:57 +00:00
14 lines
303 B
C++
14 lines
303 B
C++
/*
|
|
* Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace Web::HighResolutionTime {
|
|
|
|
// https://w3c.github.io/hr-time/#dfn-coarsen-time
|
|
double coarsen_time(double timestamp, bool cross_origin_isolated_capability = false);
|
|
|
|
}
|