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 OSP_PUBLIC_TIMESTAMP_H_ 6 #define OSP_PUBLIC_TIMESTAMP_H_ 7 8 namespace openscreen { 9 namespace osp { 10 11 // Microseconds after the epoch. 12 typedef uint64_t timestamp_t; 13 14 } // namespace osp 15 } // namespace openscreen 16 17 #endif // OSP_PUBLIC_TIMESTAMP_H_ 18