blob: c6ac3a11e7773f59bde9b12579b94de141484877 [file] [log] [blame] [edit]
// Copyright 2021 The ChromiumOS Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// This file is copied from,
// https://cs.chromium.org/chromium/src/mojo/public/mojom/base/time.mojom
// Change the module to avoid collision with other platform mojom.
module ash.cros_healthd.external.mojo_base.mojom;
[Stable]
struct Time {
// The internal value is expressed in terms of microseconds since a fixed but
// intentionally unspecified epoch.
int64 internal_value;
};
[Stable]
struct TimeDelta {
int64 microseconds;
};
[Stable]
struct TimeTicks {
// The internal value is expressed in terms of microseconds since a fixed but
// intentionally unspecified epoch.
int64 internal_value;
};