1// Copyright 2016 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 5module mojo_base.mojom; 6 7struct Time { 8 // The internal value is expressed in terms of microseconds since a fixed but 9 // intentionally unspecified epoch. 10 int64 internal_value; 11}; 12 13struct TimeDelta { 14 int64 microseconds; 15}; 16 17struct TimeTicks { 18 // The internal value is expressed in terms of microseconds since a fixed but 19 // intentionally unspecified epoch. 20 int64 internal_value; 21}; 22