1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef dom_performance_PerformanceService_h
8 #define dom_performance_PerformanceService_h
10 #include "mozilla/TimeStamp.h"
12 #include "nsDOMNavigationTiming.h"
14 namespace mozilla::dom
{
16 // This class is thread-safe.
18 // We use this singleton for having the correct value of performance.timeOrigin.
19 // This value must be calculated on top of the pair:
20 // - mCreationTimeStamp (monotonic clock)
21 // - mCreationEpochTime (unix epoch time)
22 // These 2 values must be taken "at the same time" in order to be used
25 class PerformanceService
{
27 NS_INLINE_DECL_THREADSAFE_REFCOUNTING(PerformanceService
)
29 static PerformanceService
* GetOrCreate();
31 DOMHighResTimeStamp
TimeOrigin(const TimeStamp
& aCreationTimeStamp
) const;
35 ~PerformanceService() = default;
37 TimeStamp mCreationTimeStamp
;
38 PRTime mCreationEpochTime
;
41 } // namespace mozilla::dom
43 #endif // dom_performance_PerformanceService_h