summaryrefslogtreecommitdiff
path: root/java/com/android/dialer/logging
diff options
context:
space:
mode:
authorlinyuh <linyuh@google.com>2017-10-10 11:03:33 -0700
committerEric Erfanian <erfanian@google.com>2017-10-11 07:05:36 -0700
commit7b96fb1690255f13591edba01770d2d82c197194 (patch)
tree33ed22a93d7386784698a412df081687292066bd /java/com/android/dialer/logging
parent5a0a312336fad7761f942d6934825cd6701ec009 (diff)
Set an appropriate icon for the call detail UI's callback button.
cl/170943038 groups calls in the call log according to their corresponding actions (Lightbringer, IMS, and voice). This way calls in the call detail UI are in the same category and an appropriate icon can be set. Bug: 66026167 Test: CallDetailsActivityTest.callbackButtonLoggedForLightbringerCall, CallDetailsActivityTest.callbackButtonLoggedForVideoCall, CallDetailsActivityTest.callbackButtonLoggedForVoiceCall PiperOrigin-RevId: 171703514 Change-Id: I534e1d22f1355f261105a6bde74285403fc9ed87
Diffstat (limited to 'java/com/android/dialer/logging')
-rw-r--r--java/com/android/dialer/logging/dialer_impression.proto7
1 files changed, 6 insertions, 1 deletions
diff --git a/java/com/android/dialer/logging/dialer_impression.proto b/java/com/android/dialer/logging/dialer_impression.proto
index fe1c5e9ba..098391877 100644
--- a/java/com/android/dialer/logging/dialer_impression.proto
+++ b/java/com/android/dialer/logging/dialer_impression.proto
@@ -323,7 +323,7 @@ message DialerImpression {
CALL_DETAILS_COPY_NUMBER = 1121;
CALL_DETAILS_EDIT_BEFORE_CALL = 1122;
- CALL_DETAILS_CALL_BACK = 1123;
+ CALL_DETAILS_CALL_BACK = 1123 [deprecated = true];
VVM_USER_DISMISSED_VM_ALMOST_FULL_PROMO = 1124;
VVM_USER_DISMISSED_VM_FULL_PROMO = 1125;
@@ -554,5 +554,10 @@ message DialerImpression {
// More voicemail transcription impressions
VVM_TRANSCRIPTION_POLL_REQUEST = 1283;
+
+ // Callback impressions (with more granularity) from the call details UI
+ CALL_DETAILS_IMS_VIDEO_CALL_BACK = 1284;
+ CALL_DETAILS_LIGHTBRINGER_CALL_BACK = 1285;
+ CALL_DETAILS_VOICE_CALL_BACK = 1286;
}
}