/* * Copyright 2023 Google LLC * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #ifndef SkTime_DEFINED #define SkTime_DEFINED /** \namespace SkTime Platform-implemented utilities to return a monotonic counter. */ namespace SkTime { double GetNSecs(); inline double GetSecs() { … } inline double GetMSecs() { … } } // namespace SkTime #endif