mark a. foltz | c28ca40 | 2018-07-19 16:11:32 -0700 | [diff] [blame^] | 1 | // Copyright 2018 The Chromium Authors. All rights reserved. |
2 | // Use of this source code is governed by a BSD-style license that can be | ||||
3 | // found in the LICENSE file. | ||||
4 | |||||
5 | #ifndef PLATFORM_API_TIME_H_ | ||||
6 | #define PLATFORM_API_TIME_H_ | ||||
7 | |||||
8 | #include <cstdint> | ||||
9 | |||||
10 | namespace openscreen { | ||||
11 | namespace platform { | ||||
12 | |||||
13 | typedef uint64_t Microseconds; | ||||
14 | |||||
15 | Microseconds GetMonotonicTimeNow(); | ||||
16 | |||||
17 | } // namespace platform | ||||
18 | } // namespace openscreen | ||||
19 | |||||
20 | #endif |