aboutsummaryrefslogtreecommitdiff
path: root/dbus/metrics_event/metrics_event.proto
diff options
context:
space:
mode:
Diffstat (limited to 'dbus/metrics_event/metrics_event.proto')
-rw-r--r--dbus/metrics_event/metrics_event.proto25
1 files changed, 25 insertions, 0 deletions
diff --git a/dbus/metrics_event/metrics_event.proto b/dbus/metrics_event/metrics_event.proto
new file mode 100644
index 0000000..48fd473
--- /dev/null
+++ b/dbus/metrics_event/metrics_event.proto
@@ -0,0 +1,25 @@
+// Copyright 2018 The Chromium OS Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+syntax = "proto3";
+
+option optimize_for = LITE_RUNTIME;
+
+package metrics_event;
+
+// Content of MetricsEvent signals emitted by Chrome.
+message Event {
+ // Event types.
+ enum Type {
+ TAB_DISCARD = 0;
+ OOM_KILL = 1;
+ TAB_SWITCH = 2;
+ }
+
+ // The type of the event being signaled.
+ Type type = 1;
+
+ // The time of the event (CLOCK_MONOTONIC in milliseconds).
+ int64 timestamp = 2;
+}