summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author TreeHugger Robot <treehugger-gerrit@google.com> 2019-01-31 01:52:36 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2019-01-31 01:52:36 +0000
commite2841c523b46419c83b95804880814db2fd43124 (patch)
treef802ac769fc8bf89157780081e222daf6d2d0080
parentf29e2228ceab1c8d1a39b7469d7038e243c5c107 (diff)
parent7ce945bea5183244938ab2a72659df8ce517d9aa (diff)
Merge "Fix comments in AttentionService result consts"
-rw-r--r--core/java/android/service/attention/AttentionService.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/service/attention/AttentionService.java b/core/java/android/service/attention/AttentionService.java
index f6e448dc4757..24d74ffd747d 100644
--- a/core/java/android/service/attention/AttentionService.java
+++ b/core/java/android/service/attention/AttentionService.java
@@ -64,10 +64,10 @@ public abstract class AttentionService extends Service {
/** Attention is present. */
public static final int ATTENTION_SUCCESS_PRESENT = 1;
- /** Preempted by other camera user. */
+ /** Preempted by other client. */
public static final int ATTENTION_FAILURE_PREEMPTED = 2;
- /** Preempted by other camera user. */
+ /** Request timed out. */
public static final int ATTENTION_FAILURE_TIMED_OUT = 3;
/** Unknown reasons for failing to determine the attention. */