aboutsummaryrefslogtreecommitdiff
path: root/mojo/common/time.mojom
diff options
context:
space:
mode:
Diffstat (limited to 'mojo/common/time.mojom')
-rw-r--r--mojo/common/time.mojom14
1 files changed, 10 insertions, 4 deletions
diff --git a/mojo/common/time.mojom b/mojo/common/time.mojom
index 43dfcc8..b403bca 100644
--- a/mojo/common/time.mojom
+++ b/mojo/common/time.mojom
@@ -4,12 +4,18 @@
module mojo.common.mojom;
-[Native]
-struct Time;
+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;
};
-[Native]
-struct TimeTicks;
+struct TimeTicks {
+ // The internal value is expressed in terms of microseconds since a fixed but
+ // intentionally unspecified epoch.
+ int64 internal_value;
+};