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.proto9
1 files changed, 7 insertions, 2 deletions
diff --git a/dbus/metrics_event/metrics_event.proto b/dbus/metrics_event/metrics_event.proto
index 48fd473..c1a2762 100644
--- a/dbus/metrics_event/metrics_event.proto
+++ b/dbus/metrics_event/metrics_event.proto
@@ -8,13 +8,18 @@ option optimize_for = LITE_RUNTIME;
package metrics_event;
-// Content of MetricsEvent signals emitted by Chrome.
+// Content of signals emitted by Chrome (the ChromeEvent signal in the
+// MetricsEventService) and the anomaly_collector daemon (the AnomalyEvent
+// signal in the AnomalyEventService) to report events of interest for
+// measurements.
message Event {
// Event types.
enum Type {
TAB_DISCARD = 0;
- OOM_KILL = 1;
+ OOM_KILL = 1; // obsolete---use OOM_KILL_BROWSER instead
TAB_SWITCH = 2;
+ OOM_KILL_BROWSER = 3;
+ OOM_KILL_KERNEL = 4;
}
// The type of the event being signaled.