From dd028ba2e17217da7e8a06f16d4d6c191e7b22f1 Mon Sep 17 00:00:00 2001 From: Alex Salo Date: Wed, 17 Apr 2019 13:33:49 -0700 Subject: [PATCH] Update atoms with the final API constants Bug: 122960476 Test: manually Change-Id: Ie80e4e797554d3f4c351e352ce4bc5da9994a9f6 --- cmds/statsd/src/atoms.proto | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/cmds/statsd/src/atoms.proto b/cmds/statsd/src/atoms.proto index d28108ceeb73b..dbf0c3a72bd87 100644 --- a/cmds/statsd/src/atoms.proto +++ b/cmds/statsd/src/atoms.proto @@ -5467,9 +5467,11 @@ message AttentionManagerServiceResultReported { UNKNOWN = 20; ATTENTION_SUCCESS_ABSENT = 0; ATTENTION_SUCCESS_PRESENT = 1; - ATTENTION_FAILURE_PREEMPTED = 2; - ATTENTION_FAILURE_TIMED_OUT = 3; - ATTENTION_FAILURE_UNKNOWN = 4; + ATTENTION_FAILURE_UNKNOWN = 2; + ATTENTION_FAILURE_CANCELLED = 3; + ATTENTION_FAILURE_PREEMPTED = 4; + ATTENTION_FAILURE_TIMED_OUT = 5; + ATTENTION_FAILURE_CAMERA_PERMISSION_ABSENT = 6; } optional AttentionCheckResult attention_check_result = 1 [default = UNKNOWN]; }