Home | History | Annotate | Download | only in common
      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 
      5 module mojo.common.mojom;
      6 
      7 struct 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 
     13 struct TimeDelta {
     14   int64 microseconds;
     15 };
     16 
     17 struct 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