blob: eba7e8697f12b42b52b3d21f378900b3509b6002 [file] [log] [blame]
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Note:
// 1. This file is copied from,
// https://cs.chromium.org/chromium/src/mojo/public/mojom/base/time.mojom
// 2. On chromium, we must use the version under mojo folder so we do not need
// to and must not sync this file to chromium.
module mojo_base.mojom;
struct Time {
// The internal value is expressed in terms of microseconds since a fixed but
// intentionally unspecified epoch.
int64 internal_value;
};
struct TimeDelta {
int64 microseconds;
};
struct TimeTicks {
// The internal value is expressed in terms of microseconds since a fixed but
// intentionally unspecified epoch.
int64 internal_value;
};