• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1syntax = "proto2";
2
3package com.android.dialer.logging;
4option java_package = "com.android.dialer.logging";
5option java_multiple_files = true;
6option optimize_for = LITE_RUNTIME;
7
8
9
10
11message DialerImpression {
12  // Event enums to be used for Impression Logging in Dialer.
13  // It's perfectly acceptable for this enum to be large
14  // Values should be from 1000 to 100000.
15  // Next Tag: 1409
16  enum Type {
17    UNKNOWN_AOSP_EVENT_TYPE = 1000;
18
19    // User opened the app
20    APP_LAUNCHED = 1001;
21
22    // User pressed the speaker phone button
23    IN_CALL_SCREEN_TURN_ON_SPEAKERPHONE = 1002;
24
25    // User pressed the speaker phone button again
26    IN_CALL_SCREEN_TURN_ON_WIRED_OR_EARPIECE = 1003;
27
28    // Number not identified as spam and the user tapped the block/report spam
29    // button in the call log
30    CALL_LOG_BLOCK_REPORT_SPAM = 1004;
31
32    // Number identified as spam and the user tapped on the block number call
33    // log item
34    CALL_LOG_BLOCK_NUMBER = 1005;
35
36    // User tapped on the unblock number in the call log
37    // This does not deal with whether the user reported this spam or not while
38    // initially blocking For that refer to
39    // REPORT_AS_NOT_SPAM_VIA_UNBLOCK_NUMBER. If the user had not reported it as
40    // spam they then have the option of directly unblocking the number, a
41    // success of which is logged in USER_ACTION_UNBLOCKED_NUMBER
42    CALL_LOG_UNBLOCK_NUMBER = 1006;
43
44    // Number was identified as spam, and the user tapped that it was not spam
45    CALL_LOG_REPORT_AS_NOT_SPAM = 1007;
46
47    // Confirmation dialog in which the user confirmed that the number was not
48    // spam
49    DIALOG_ACTION_CONFIRM_NUMBER_NOT_SPAM = 1008;
50
51    // User unblocked a number and also acknowledged that the number is not spam
52    // This happens when the user had initially blocked a number and also
53    // claimed the number was spam and had now proceeded to undo that.
54    REPORT_AS_NOT_SPAM_VIA_UNBLOCK_NUMBER = 1009
55
56        ;
57
58    // A number that was identified as spam and the user proceeded to block it.
59    // However this impression was to make sure that while blocking the number
60    // the user also acknowledged that they were going to be reporting this as
61    // spam. There is no option for the user in this case to not report it as
62    // spam and block it only. The only flow is: system identified number as
63    // spam -> user wants to block it -> confirmation dialog shows up asking
64    // user to acknowledge they want to block and report as spam -> user
65    // acknowledges and this is when this impression is sent
66    DIALOG_ACTION_CONFIRM_NUMBER_SPAM_INDIRECTLY_VIA_BLOCK_NUMBER = 1010;
67
68    // User reported the number as spam by tick marking on report spam when
69    // blocking the number via call log. This is for case where the user wants
70    // to block a number and also report it as spam
71    REPORT_CALL_AS_SPAM_VIA_CALL_LOG_BLOCK_REPORT_SPAM_SENT_VIA_BLOCK_NUMBER_DIALOG =
72        1011
73
74        ;
75
76    // User made it to the last step and actually blocked the number
77    USER_ACTION_BLOCKED_NUMBER = 1012
78
79        ;
80
81    // User made it to the last step but blocking failed because user is
82    // secondary or dialer is not default
83    USER_ACTION_BLOCK_NUMBER_FAILED = 1369;
84
85    // User made it to the last step and actually unblocked the number
86    USER_ACTION_UNBLOCKED_NUMBER = 1013;
87
88    // User made it to the last step but unblocking failed because user is
89    // secondary or dialer is not default
90    USER_ACTION_UNBLOCK_NUMBER_FAILED = 1370;
91
92    // User blocked a number, does not guarantee if the number was reported as
93    // spam or not To compute the number of blocked numbers that were reported
94    // as not spam and yet blocked Subtract this value from
95    // SPAM_AFTER_CALL_NOTIFICATION_MARKED_NUMBER_AS_SPAM. It would be
96    // interesting to see how this value compares with
97    // SPAM_AFTER_CALL_NOTIFICATION_REPORT_NUMBER_AS_NOT_SPAM
98    SPAM_AFTER_CALL_NOTIFICATION_BLOCK_NUMBER = 1014;
99
100    // Displays the dialog for first time spam calls with actions "Not spam",
101    // "Block", and "Dismiss".
102    SPAM_AFTER_CALL_NOTIFICATION_SHOW_SPAM_DIALOG = 1015;
103
104    // Displays the dialog for the first time unknown calls with actions "Add
105    // contact", "Block/report spam", and "Dismiss".
106    SPAM_AFTER_CALL_NOTIFICATION_SHOW_NON_SPAM_DIALOG = 1016;
107
108    // User added the number to contacts from the after call notification
109    SPAM_AFTER_CALL_NOTIFICATION_ADD_TO_CONTACTS = 1019
110
111        ;
112
113    // User marked the number as spam on the after call notification flow
114    SPAM_AFTER_CALL_NOTIFICATION_MARKED_NUMBER_AS_SPAM = 1020
115
116        ;
117
118    SPAM_AFTER_CALL_NOTIFICATION_MARKED_NUMBER_AS_NOT_SPAM_AND_BLOCKED = 1021;
119
120    // User reported the number as not spam
121    SPAM_AFTER_CALL_NOTIFICATION_REPORT_NUMBER_AS_NOT_SPAM = 1022
122
123        ;
124
125    // User dismissed the spam notification
126    SPAM_AFTER_CALL_NOTIFICATION_ON_DISMISS_SPAM_DIALOG = 1024;
127
128    // User dismissed the non spam notification
129    SPAM_AFTER_CALL_NOTIFICATION_ON_DISMISS_NON_SPAM_DIALOG = 1025;
130
131    // From the service instead of an activity logs the number of times the
132    // number was marked as Spam by the user (e.g from the feedback prompt)
133    SPAM_NOTIFICATION_SERVICE_ACTION_MARK_NUMBER_AS_SPAM = 1026
134
135        ;
136
137    // From the service instead of an activity logs the number of times the
138    // number was marked as Not Spam by the user (e.g from the feedback prompt)
139    SPAM_NOTIFICATION_SERVICE_ACTION_MARK_NUMBER_AS_NOT_SPAM = 1027
140
141        ;
142
143    // User is in a active call i.e either incoming or outgoing
144    // This is mainly so we can assign an impression event to a call event i.e
145    // so that we may be able to stitch different types of events if they make
146    // sense e.g user pressed a speaker button and we want to associate that to
147    // a call event
148    USER_PARTICIPATED_IN_A_CALL = 1028
149
150        ;
151
152    // Incoming call is a spam call
153    INCOMING_SPAM_CALL = 1029;
154
155    // Incoming call is a non spam call
156    INCOMING_NON_SPAM_CALL = 1030;
157
158    // Spam notifications shown despite throttling
159    SPAM_NOTIFICATION_SHOWN_AFTER_THROTTLE = 1041
160
161        ;
162
163    // Spam notifications not shown due to throttling
164    SPAM_NOTIFICATION_NOT_SHOWN_AFTER_THROTTLE = 1042;
165
166    // Non spam notifications shown despite throttling
167    NON_SPAM_NOTIFICATION_SHOWN_AFTER_THROTTLE = 1043
168
169        ;
170
171    // Non spam notifications not shown due to throttling
172    NON_SPAM_NOTIFICATION_NOT_SHOWN_AFTER_THROTTLE = 1044;
173
174    // Voicemail status has updated in the voicemail tab and the change PIN
175    // prompt is shown.
176    VOICEMAIL_ALERT_SET_PIN_SHOWN = 1045;
177
178    // User has clicked the change PIN action in the voicemail tab
179    VOICEMAIL_ALERT_SET_PIN_CLICKED = 1046;
180
181    // User was not able to or did not participate in the call e.g missed calls,
182    // rejected calls
183    USER_DID_NOT_PARTICIPATE_IN_CALL = 1047;
184
185    // User deleted a call log entry
186    USER_DELETED_CALL_LOG_ITEM = 1048
187
188        ;
189
190    // User tapped on "Send a message"
191    CALL_LOG_SEND_MESSAGE = 1049
192
193        ;
194
195    // User tapped on "Add to contact"
196    CALL_LOG_ADD_TO_CONTACT = 1050
197
198        ;
199
200    // User tapped on "Create new contact"
201    CALL_LOG_CREATE_NEW_CONTACT = 1051
202
203        ;
204
205    // User deleted an entry from the voicemail tab
206    VOICEMAIL_DELETE_ENTRY = 1052
207
208        ;
209
210    // Voicemail call log entry was expanded. Could be either if the user tapped
211    // the voicemail call log entry or pressed the play button when the
212    // voicemail call log entry was not expanded
213    VOICEMAIL_EXPAND_ENTRY = 1053
214
215        ;
216
217    // The play button for voicemail call log entry was tapped directly (i.e
218    // when the voicemail call log entry was not expanded and the playbutton was
219    // tapped)
220    VOICEMAIL_PLAY_AUDIO_DIRECTLY = 1054
221
222        ;
223
224    // The play button after expanding the voicemail call log entry was tapped
225    VOICEMAIL_PLAY_AUDIO_AFTER_EXPANDING_ENTRY = 1055
226
227        ;
228
229    // Incoming call was rejected from the notifications
230    REJECT_INCOMING_CALL_FROM_NOTIFICATION = 1056
231
232        ;
233
234    // Incoming call was rejected from the answer screen including rejecting via
235    // sms and talkback
236    REJECT_INCOMING_CALL_FROM_ANSWER_SCREEN = 1057
237
238        ;
239
240    // User tapped block and spam buttons in context menu, same as buttons in
241    // call log drop down
242    // menu (See 1004-1007).
243    CALL_LOG_CONTEXT_MENU_BLOCK_REPORT_SPAM = 1058;
244    CALL_LOG_CONTEXT_MENU_BLOCK_NUMBER = 1059;
245    CALL_LOG_CONTEXT_MENU_UNBLOCK_NUMBER = 1060;
246    CALL_LOG_CONTEXT_MENU_REPORT_AS_NOT_SPAM = 1061;
247
248    NEW_CONTACT_OVERFLOW = 1062;
249    NEW_CONTACT_FAB = 1063;
250
251    // The ToS is shown the user
252    VOICEMAIL_VVM3_TOS_SHOWN = 1064;
253
254    // The user has accepted the ToS
255    VOICEMAIL_VVM3_TOS_ACCEPTED = 1065;
256
257    // The user has went through the decline ToS dialog and VVM is disabled
258    VOICEMAIL_VVM3_TOS_DECLINED = 1066;
259
260    // The user has clicked the decline ToS button, and a conformation dialog
261    // was shown
262    VOICEMAIL_VVM3_TOS_DECLINE_CLICKED = 1067;
263
264    // The use has clicked the decline ToS button but the PIN has been
265    // randomized. A dialog to instruct the user to set the PIN has been shown
266    VOICEMAIL_VVM3_TOS_DECLINE_CHANGE_PIN_SHOWN = 1068;
267
268    // The user does not have a permission and are presented with a
269    // non-framework UI to request permission.
270    STORAGE_PERMISSION_DISPLAYED = 1069;
271    CAMERA_PERMISSION_DISPLAYED = 1074;
272
273    // The user is being shown the Android framework UI to request a permission.
274    STORAGE_PERMISSION_REQUESTED = 1070;
275    CAMERA_PERMISSION_REQUESTED = 1075;
276
277    // The user has permenantly denied a permission, so the user is being
278    // sent to dialer settings to grant permission.
279    STORAGE_PERMISSION_SETTINGS = 1071;
280    CAMERA_PERMISSION_SETTINGS = 1076;
281
282    // The user granted a permission.
283    STORAGE_PERMISSION_GRANTED = 1072;
284    CAMERA_PERMISSION_GRANTED = 1077;
285
286    // The user denied a permission.
287    STORAGE_PERMISSION_DENIED = 1073;
288    CAMERA_PERMISSION_DENIED = 1078;
289
290    // Voicemail config corruption is detected when in dialtacts activity.
291    VOICEMAIL_CONFIGURATION_STATE_CORRUPTION_DETECTED_FROM_ACTIVITY = 1079;
292    // Voicemail config corruption is detected when a new voicemail notification
293    // has arrived.
294    VOICEMAIL_CONFIGURATION_STATE_CORRUPTION_DETECTED_FROM_NOTIFICATION = 1080;
295
296    // Android Auto Backup and Restore (Dolly)
297    BACKUP_ON_BACKUP = 1081 [deprecated = true];
298    BACKUP_ON_FULL_BACKUP = 1082 [deprecated = true];
299    BACKUP_ON_BACKUP_DISABLED = 1083 [deprecated = true];
300    BACKUP_VOICEMAIL_BACKED_UP = 1084 [deprecated = true];
301    BACKUP_FULL_BACKED_UP = 1085 [deprecated = true];
302    BACKUP_ON_BACKUP_JSON_EXCEPTION = 1086 [deprecated = true];
303
304    BACKUP_ON_QUOTA_EXCEEDED = 1087 [deprecated = true];
305
306    BACKUP_ON_RESTORE = 1088 [deprecated = true];
307    BACKUP_RESTORED_FILE = 1089 [deprecated = true];
308    BACKUP_RESTORED_VOICEMAIL = 1090 [deprecated = true];
309    BACKUP_ON_RESTORE_FINISHED = 1091 [deprecated = true];
310    BACKUP_ON_RESTORE_DISABLED = 1092 [deprecated = true];
311    BACKUP_ON_RESTORE_JSON_EXCEPTION = 1093 [deprecated = true];
312    BACKUP_ON_RESTORE_IO_EXCEPTION = 1094 [deprecated = true];
313
314    BACKUP_MAX_VM_BACKUP_REACHED = 1095 [deprecated = true];
315
316    EVENT_ANSWER_HINT_ACTIVATED = 1096;
317    EVENT_ANSWER_HINT_DEACTIVATED = 1097;
318
319    VVM_TAB_VIEWED = 1098;
320
321    VVM_SHARE_VISIBLE = 1099;
322    VVM_SHARE_PRESSED = 1100;
323
324    OUTGOING_VIDEO_CALL = 1101;
325    INCOMING_VIDEO_CALL = 1102;
326    USER_PARTICIPATED_IN_A_VIDEO_CALL = 1103;
327
328    BACKUP_ON_RESTORE_VM_DUPLICATE_NOT_RESTORING = 1104 [deprecated = true];
329
330    // User tapped the 'Share and call' button to start the call composer
331    CALL_LOG_SHARE_AND_CALL = 1105;
332    CALL_COMPOSER_ACTIVITY_PLACE_RCS_CALL = 1106;
333    CALL_COMPOSER_ACTIVITY_SEND_AND_CALL_PRESSED_WHEN_SESSION_NOT_READY = 1107;
334
335    POST_CALL_PROMPT_USER_TO_SEND_MESSAGE_CLICKED = 1108;
336    POST_CALL_PROMPT_USER_TO_SEND_MESSAGE = 1109;
337    POST_CALL_PROMPT_USER_TO_VIEW_SENT_MESSAGE = 1110;
338    POST_CALL_PROMPT_USER_TO_VIEW_SENT_MESSAGE_CLICKED = 1111;
339
340    IN_CALL_SCREEN_TURN_ON_MUTE = 1112;
341    IN_CALL_SCREEN_TURN_OFF_MUTE = 1113;
342    IN_CALL_SCREEN_SWAP_CAMERA = 1114;
343    IN_CALL_SCREEN_TURN_ON_VIDEO = 1115;
344    IN_CALL_SCREEN_TURN_OFF_VIDEO = 1116;
345
346    VIDEO_CALL_WITH_INCOMING_VOICE_CALL = 1117;
347    VIDEO_CALL_WITH_INCOMING_VIDEO_CALL = 1118;
348    VOICE_CALL_WITH_INCOMING_VOICE_CALL = 1119;
349    VOICE_CALL_WITH_INCOMING_VIDEO_CALL = 1120;
350
351    CALL_DETAILS_COPY_NUMBER = 1121;
352    CALL_DETAILS_EDIT_BEFORE_CALL = 1122;
353    CALL_DETAILS_CALL_BACK = 1123 [deprecated = true];
354
355    VVM_USER_DISMISSED_VM_ALMOST_FULL_PROMO = 1124;
356    VVM_USER_DISMISSED_VM_FULL_PROMO = 1125;
357    VVM_USER_ENABLED_ARCHIVE_FROM_VM_ALMOST_FULL_PROMO = 1126;
358    VVM_USER_ENABLED_ARCHIVE_FROM_VM_FULL_PROMO = 1127;
359    VVM_USER_SHOWN_VM_ALMOST_FULL_PROMO = 1128;
360    VVM_USER_SHOWN_VM_FULL_PROMO = 1129;
361    VVM_USER_SHOWN_VM_ALMOST_FULL_ERROR_MESSAGE = 1130;
362    VVM_USER_SHOWN_VM_FULL_ERROR_MESSAGE = 1131;
363    VVM_USER_TURNED_ARCHIVE_ON_FROM_SETTINGS = 1132;
364    VVM_USER_TURNED_ARCHIVE_OFF_FROM_SETTINGS = 1133;
365    VVM_ARCHIVE_AUTO_DELETED_VM_FROM_SERVER = 1134;
366    VVM_ARCHIVE_AUTO_DELETE_TURNED_OFF = 1135;
367
368    VVM_TAB_VISIBLE = 1136;
369    VVM_UNBUNDLED_EVENT_RECEIVED = 1137;
370    VVM_ACTIVATION_STARTED = 1138;
371    VVM_ACTIVATION_COMPLETED = 1139;
372    VVM_AUTO_RETRY_ACTIVATION = 1140;
373    VVM_PROVISIONING_STARTED = 1141;
374    VVM_PROVISIONING_COMPLETED = 1142;
375    VVM_SYNC_STARTED = 1143;
376    VVM_SYNC_COMPLETED = 1144;
377    VVM_AUTO_RETRY_SYNC = 1145;
378    VVM_USER_RETRY = 1146;
379    VVM_USER_SYNC = 1147;
380    VVM_SETTINGS_VIEWED = 1148;
381    VVM_CHANGE_PIN_CLICKED = 1149;
382    VVM_CHANGE_PIN_COMPLETED = 1150;
383    VVM_CHANGE_RINGTONE_CLICKED = 1151 [deprecated = true];
384    VVM_CHANGE_VIBRATION_CLICKED = 1152;
385    VVM_USER_ENABLED_IN_SETTINGS = 1153;
386    VVM_USER_DISABLED_IN_SETTINGS = 1154;
387    VVM_ADVANCED_SETINGS_CLICKED = 1155;
388    VVM_NOTIFICATION_CLICKED = 1156;
389    VVM_NOTIFICATION_CREATED = 1157;
390    VVM_NOTIFICATION_CREATED_WITH_TRANSCRIPTION = 1158;
391    VVM_TRANSCRIPTION_DOWNLOADED = 1159;
392    VVM_CHANGE_AIRPLANE_MODE_CLICKED = 1160;
393    VVM_CALL_VOICEMAIL_CLICKED = 1161;
394    VVM_QUOTA_CHECK_UNAVAILABLE = 1162;
395
396    // Emergency location impressions
397    EMERGENCY_NEW_EMERGENCY_CALL = 1163;
398    EMERGENCY_CALLBACK = 1164;
399    EMERGENCY_NO_LOCATION_PERMISSION = 1165;
400    EMERGENCY_BATTERY_TOO_LOW_TO_GET_LOCATION = 1166;
401    EMERGENCY_CANT_GET_LOCATION = 1167;
402    EMERGENCY_STALE_LOCATION = 1168;
403    EMERGENCY_INACCURATE_LOCATION = 1169;
404    EMERGENCY_GOT_LOCATION = 1170;
405    EMERGENCY_GOT_ADDRESS = 1171;
406    EMERGENCY_GOT_MAP = 1172;
407    EMERGENCY_LAUNCHED_MAP = 1173;
408
409    VIDEO_CALL_UPGRADE_REQUESTED = 1174
410
411        ;
412    VIDEO_CALL_REQUEST_ACCEPTED = 1175
413
414        ;
415    VIDEO_CALL_REQUEST_ACCEPTED_AS_AUDIO = 1176
416
417        ;
418    VIDEO_CALL_REQUEST_DECLINED = 1177
419
420        ;
421    VIDEO_CALL_REQUEST_RECEIVED = 1178
422
423        ;
424
425    RCS_VIDEO_SHARE_UPGRADE_REQUESTED = 1179;
426    RCS_VIDEO_SHARE_REQUEST_ACCEPTED = 1180;
427    RCS_VIDEO_SHARE_REQUEST_DECLINED = 1181;
428    RCS_VIDEO_SHARE_REQUEST_RECEIVED = 1182;
429
430    IMS_VIDEO_UPGRADE_REQUESTED = 1183;
431    IMS_VIDEO_REQUEST_ACCEPTED = 1184;
432    IMS_VIDEO_REQUEST_ACCEPTED_AS_AUDIO = 1185;
433    IMS_VIDEO_REQUEST_DECLINED = 1186;
434    IMS_VIDEO_REQUEST_RECEIVED = 1187;
435
436    VVM_STATUS_CHECK_READY = 1188;
437    VVM_STATUS_CHECK_REACTIVATION = 1189;
438
439    VVM_ARCHIVE_AUTO_DELETE_FAILED_DUE_TO_FAILED_QUOTA_CHECK = 1190;
440
441    // User pressed the speaker phone button on the return-to-call bubble
442    BUBBLE_TURN_ON_SPEAKERPHONE = 1191;
443    // User pressed the speaker phone button again on the return-to-call bubble
444    BUBBLE_TURN_ON_WIRED_OR_EARPIECE = 1192;
445    // User muted the call from the return-to-call bubble
446    BUBBLE_MUTE_CALL = 1193;
447    // User unmuted the call from the return-to-call bubble
448    BUBBLE_UNMUTE_CALL = 1194;
449    // User ended the call from the return-to-call bubble
450    BUBBLE_END_CALL = 1195;
451
452    LIGHTBRINGER_VIDEO_REQUESTED_FROM_SEARCH = 1196;
453    LIGHTBRINGER_VIDEO_REQUESTED_FROM_CALL_LOG =
454        1197;  // Including call history
455    IMS_VIDEO_REQUESTED_FROM_SEARCH = 1198;
456    IMS_VIDEO_REQUESTED_FROM_CALL_LOG = 1199;  // Including call history
457
458    // Multi select impressions
459    MULTISELECT_LONG_PRESS_ENTER_MULTI_SELECT_MODE = 1200;
460    MULTISELECT_LONG_PRESS_TAP_ENTRY = 1201;
461    MULTISELECT_SINGLE_PRESS_SELECT_ENTRY = 1202;
462    MULTISELECT_SINGLE_PRESS_UNSELECT_ENTRY = 1203;
463    MULTISELECT_SINGLE_PRESS_TAP_VIA_CONTACT_BADGE = 1204;
464    MULTISELECT_SELECT_ALL = 1205;
465    MULTISELECT_UNSELECT_ALL = 1206;
466    MULTISELECT_TAP_DELETE_ICON = 1207;
467    MULTISELECT_DISPLAY_DELETE_CONFIRMATION_DIALOG = 1208;
468    MULTISELECT_DELETE_ENTRY_VIA_CONFIRMATION_DIALOG = 1209;
469    MULTISELECT_CANCEL_CONFIRMATION_DIALOG_VIA_CANCEL_BUTTON = 1210;
470    MULTISELECT_CANCEL_CONFIRMATION_DIALOG_VIA_CANCEL_TOUCH = 1211;
471    MULTISELECT_ROTATE_AND_SHOW_ACTION_MODE = 1212;
472
473    // Impressions for verizon VVM with backup and transcription ToS
474    VOICEMAIL_VVM3_TOS_V2_CREATED = 1213;
475    VOICEMAIL_VVM3_TOS_V2_ACCEPTED = 1214;
476    VOICEMAIL_VVM3_TOS_V2_DECLINE_CLICKED = 1215;
477    // Impressions for dialer voicemail with backup and transcription ToS
478    VOICEMAIL_DIALER_TOS_CREATED = 1216;
479    VOICEMAIL_DIALER_TOS_ACCEPTED = 1217;
480    VOICEMAIL_DIALER_TOS_DECLINE_CLICKED = 1218;
481
482    // Add or create contact
483    // Creating new contact fab was logged as NEW_CONTACT_FAB
484    CREATE_NEW_CONTACT_FROM_CALL_LOG = 1219;
485    CREATE_NEW_CONTACT_FROM_DIALPAD = 1220;
486    CREATE_NEW_CONTACT_FROM_VOICEMAIL = 1221;
487    CREATE_NEW_CONTACT_FROM_CALL_HISTORY = 1222;
488    ADD_TO_A_CONTACT_FROM_CALL_LOG = 1223;
489    ADD_TO_A_CONTACT_FROM_DIALPAD = 1224;
490    ADD_TO_A_CONTACT_FROM_VOICEMAIL = 1225;
491    ADD_TO_A_CONTACT_FROM_CALL_HISTORY = 1226;
492
493    // Impressions for dialer reporting caller id as inaccurate
494    CALLER_ID_REPORTED = 1227;
495    CALLER_ID_REPORT_FAILED = 1228;
496
497    // Impressions for interactions with the voicemail transcription server
498    VVM_TRANSCRIPTION_REQUEST_SENT = 1229;
499    VVM_TRANSCRIPTION_REQUEST_RETRY = 1230;
500    VVM_TRANSCRIPTION_RESPONSE_SUCCESS = 1231;
501    VVM_TRANSCRIPTION_RESPONSE_EMPTY = 1232;
502    VVM_TRANSCRIPTION_RESPONSE_INVALID = 1233;
503    VVM_TRANSCRIPTION_RESPONSE_RECOVERABLE_ERROR = 1234;
504    VVM_TRANSCRIPTION_RESPONSE_FATAL_ERROR = 1235;
505
506    // In in call UI
507    UPGRADE_TO_VIDEO_CALL_BUTTON_SHOWN = 1236;
508
509    // Bubble primary button first click to expand bubble (by user)
510    BUBBLE_PRIMARY_BUTTON_EXPAND = 1237;
511    // Bubble prinary button second click to return to call
512    BUBBLE_PRIMARY_BUTTON_RETURN_TO_CALL = 1238;
513
514    // Dialer Key/Value Backup and Restore
515    BACKUP_KEY_VALUE_ON_BACKUP = 1239;
516    BACKUP_KEY_VALUE_ON_RESTORE = 1240;
517    BACKUP_KEY_VALUE_ON_RESTORE_FINISHED = 1241;
518    BACKUP_KEY_VALUE_GET_BACKUP_SPECIFICATION = 1242;
519    BACKUP_KEY_VALUE_BACKUP_AGENT_CONSTRUCTOR = 1243;
520
521    // In the in call UI
522    UPGRADE_TO_VIDEO_CALL_BUTTON_SHOWN_FOR_LIGHTBRINGER = 1244;
523    UPGRADE_TO_VIDEO_CALL_BUTTON_SHOWN_FOR_IMS = 1245;
524    UPGRADE_TO_VIDEO_CALL_BUTTON_SHOWN_FOR_RCS = 1246;
525    LIGHTBRINGER_UPGRADE_REQUESTED = 1247;
526
527    // Found Lightbringer reachable contact when launching Dialer
528    HAS_LIGHTBRINGER_REACHABLE_CONTACTS = 1248;
529
530    // This impression is logged once per process when the number of
531    // notifications is very high and the system may suppress future
532    // notifications.
533    HIGH_GLOBAL_NOTIFICATION_COUNT_REACHED = 1249;
534
535    // More impressions for interactions with the voicemail transcription server
536    VVM_TRANSCRIPTION_REQUEST_SENT_ASYNC = 1250;
537    VVM_TRANSCRIPTION_VOICEMAIL_RECEIVED = 1251;
538    VVM_TRANSCRIPTION_VOICEMAIL_FORMAT_NOT_SUPPORTED = 1252;
539    VVM_TRANSCRIPTION_VOICEMAIL_INVALID_DATA = 1253;
540    VVM_TRANSCRIPTION_VOICEMAIL_UPLOAD_FAILED = 1254;
541    VVM_TRANSCRIPTION_RESPONSE_LANGUAGE_NOT_SUPPORTED = 1255;
542    VVM_TRANSCRIPTION_RESPONSE_NO_SPEECH_DETECTED = 1256;
543    VVM_TRANSCRIPTION_RESPONSE_EXPIRED = 1257;
544    VVM_TRANSCRIPTION_RESPONSE_TOO_MANY_ERRORS = 1258;
545    VVM_TRANSCRIPTION_POLLING_TIMEOUT = 1259;
546
547    // Bubble collapse initiated by user, i.e. no hiding after collapse
548    BUBBLE_COLLAPSE_BY_USER = 1260;
549
550    // In in-call UI
551    IN_CALL_SHOW_DIALPAD_BUTTON_PRESSED = 1261;
552    IN_CALL_ADD_CALL_BUTTON_PRESSED = 1262;
553    IN_CALL_MERGE_BUTTON_PRESSED = 1263;
554    IN_CALL_SWAP_SECONDARY_BUTTON_PRESSED = 1264;
555
556    // In in-call dialpad
557    IN_CALL_DIALPAD_NUMBER_BUTTON_PRESSED = 1265;
558    IN_CALL_DIALPAD_HANG_UP_BUTTON_PRESSED = 1266;
559    IN_CALL_DIALPAD_CLOSE_BUTTON_PRESSED = 1267;
560
561    // More voicemail transcription impressions
562    VVM_NOTIFICATION_CREATED_WITH_IN_PROGRESS = 1268;
563    VVM_NOTIFICATION_CREATED_WITH_TRANSCRIPTION_FAILURE = 1269;
564    VVM_NOTIFICATION_CREATED_WITH_NO_TRANSCRIPTION = 1270;
565    VVM_TRANSCRIPTION_JOB_STOPPED = 1271;
566    VVM_TRANSCRIPTION_TASK_CANCELLED = 1272;
567
568    // Swipe/click to switch tabs
569    SWITCH_TAB_TO_FAVORITE_BY_SWIPE = 1273;
570    SWITCH_TAB_TO_CALL_LOG_BY_SWIPE = 1274;
571    SWITCH_TAB_TO_CONTACTS_BY_SWIPE = 1275;
572    SWITCH_TAB_TO_VOICEMAIL_BY_SWIPE = 1276;
573    SWITCH_TAB_TO_FAVORITE_BY_CLICK = 1277;
574    SWITCH_TAB_TO_CALL_LOG_BY_CLICK = 1278;
575    SWITCH_TAB_TO_CONTACTS_BY_CLICK = 1279;
576    SWITCH_TAB_TO_VOICEMAIL_BY_CLICK = 1280;
577
578    LIGHTBRINGER_NON_CONTACT_UPGRADE_REQUESTED = 1281;
579    LIGHTBRINGER_NON_CONTACT_VIDEO_REQUESTED_FROM_CALL_LOG =
580        1282;  // Including call history
581
582    // More voicemail transcription impressions
583    VVM_TRANSCRIPTION_POLL_REQUEST = 1283;
584
585    // Callback impressions (with more granularity) from the call details UI
586    CALL_DETAILS_IMS_VIDEO_CALL_BACK = 1284;
587    CALL_DETAILS_LIGHTBRINGER_CALL_BACK = 1285;
588    CALL_DETAILS_VOICE_CALL_BACK = 1286;
589
590    // Assisted Dialing related impressions tracking failures modes within the
591    // library.
592
593    // Indicates a failure to parse a provided number string in libphonenumber.
594    ASSISTED_DIALING_CONSTRAINT_PARSING_FAILURE = 1287;
595    // Indicates that the number attempting to be assisted dialed already
596    // specified a country code.
597    ASSISTED_DIALING_CONSTRAINT_NUMBER_HAS_COUNTRY_CODE = 1288;
598    // Indicates that the number attempting to be assisted dialed had an
599    // extension.
600    ASSISTED_DIALING_CONSTRAINT_NUMBER_HAS_EXTENSION = 1289;
601    // Indicates that the user disabled the feature.
602    ASSISTED_DIALING_FEATURE_DISABLED_BY_USER = 1292;
603
604    // User reports a same prefix call as spam from call history
605    REPORT_SAME_PREFIX_CALL_AS_SPAM_VIA_CALL_HISTORY = 1290
606
607        ;
608
609    // User reports a same prefix call as not spam from call history
610    REPORT_SAME_PREFIX_CALL_AS_NOT_SPAM_VIA_CALL_HISTORY = 1291
611
612        ;
613
614    PRECALL_INITIATED = 1293;
615    PRECALL_INITIATED_EXTERNAL = 1294;
616    PRECALL_CANCELED = 1295;
617
618    DUAL_SIM_CHANGE_SIM_PRESSED = 1296;
619    DUAL_SIM_SELECTION_SHOWN = 1297;
620    DUAL_SIM_SELECTION_VOICEMAIL = 1298;
621    DUAL_SIM_SELECTION_IN_CONTACTS = 1299;
622    DUAL_SIM_SELECTION_SUGGESTION_AVAILABLE = 1300;
623    DUAL_SIM_SELECTION_SUGGESTED_CARRIER = 1301;
624    DUAL_SIM_SELECTION_SUGGESTED_FREQUENCY = 1302;
625    DUAL_SIM_SELECTION_SUGGESTED_SIM_SELECTED = 1303;
626    DUAL_SIM_SELECTION_NON_SUGGESTED_SIM_SELECTED = 1304;
627    DUAL_SIM_SELECTION_PREFERRED_SET = 1305;
628    DUAL_SIM_SELECTION_PREFERRED_USED = 1306;
629    DUAL_SIM_SELECTION_PREFERRED_NOT_SELECTABLE = 1389;
630    DUAL_SIM_SELECTION_GLOBAL_USED = 1307;
631    DUAL_SIM_SELECTION_GLOBAL_NOT_SELECTABLE = 1390;
632    DUAL_SIM_SELECTION_SUGGESTION_AUTO_SELECTED = 1322;
633    DUAL_SIM_SELECTION_SUGGESTION_AUTO_NOT_SELECTABLE = 1391;
634
635    DUO_CALL_LOG_SET_UP_INSTALL = 1308;
636    DUO_CALL_LOG_SET_UP_ACTIVATE = 1309;
637    DUO_CALL_LOG_INVITE = 1310;
638
639    // Bubble primary button first click to expand bubble
640    BUBBLE_V2_CLICK_TO_EXPAND = 1311;
641    // Bubble primary button second click to collapse bubble
642    BUBBLE_V2_CLICK_TO_COLLAPSE = 1312;
643    // User return to call from bubble call action menu
644    BUBBLE_V2_RETURN_TO_CALL = 1313;
645    // User muted call from bubble call action menu
646    BUBBLE_V2_MUTE_CALL = 1314;
647    // User unmuted call from bubble call action menu
648    BUBBLE_V2_UNMUTE_CALL = 1315;
649    // User choose audio route speakerphone from bubble call action menu
650    BUBBLE_V2_SPEAKERPHONE = 1316;
651    // User choose audio route wired or earpiece from bubble call action menu
652    BUBBLE_V2_WIRED_OR_EARPIECE = 1317;
653    // User choose audio route bluetooth from bubble call action menu
654    BUBBLE_V2_BLUETOOTH = 1318;
655    // User ended call from bubble call action menu
656    BUBBLE_V2_END_CALL = 1319;
657    // Drag bubble to bottom and dismiss
658    BUBBLE_V2_BOTTOM_ACTION_DISMISS = 1320;
659    // Drag bubble to bottom and end call
660    BUBBLE_V2_BOTTOM_ACTION_END_CALL = 1321;
661
662    // Bubble appears
663    BUBBLE_V2_SHOW = 1323;
664
665    DUO_CALL_LOG_SET_UP_INSTALL_SHOWN = 1324;
666    DUO_CALL_LOG_SET_UP_ACTIVATE_SHOWN = 1325;
667    DUO_CALL_LOG_INVITE_SHOWN = 1326;
668
669    // NUI bottom navigation bar user actions
670    MAIN_SWITCH_TAB_TO_FAVORITE = 1327;
671    MAIN_SWITCH_TAB_TO_CALL_LOG = 1328;
672    MAIN_SWITCH_TAB_TO_CONTACTS = 1329;
673    MAIN_SWITCH_TAB_TO_VOICEMAIL = 1330;
674    // NUI search
675    MAIN_TOUCH_DIALPAD_SEARCH_LIST_TO_CLOSE_SEARCH_AND_DIALPAD = 1331;
676    MAIN_TOUCH_DIALPAD_SEARCH_LIST_TO_HIDE_DIALPAD = 1332;
677    MAIN_TOUCH_SEARCH_LIST_TO_CLOSE_SEARCH = 1333;
678    MAIN_TOUCH_SEARCH_LIST_TO_HIDE_KEYBOARD = 1334;
679    MAIN_PRESS_BACK_BUTTON_TO_CLOSE_SEARCH = 1335;
680    MAIN_PRESS_BACK_BUTTON_TO_CLOSE_SEARCH_AND_DIALPAD = 1336;
681    MAIN_PRESS_BACK_BUTTON_TO_HIDE_DIALPAD = 1337;
682    MAIN_CLICK_SEARCH_BAR = 1338;
683    MAIN_CLICK_SEARCH_BAR_VOICE_BUTTON = 1339;
684    // NUI FAB
685    MAIN_CLICK_FAB_TO_OPEN_DIALPAD = 1340;
686
687    // The call log was not dirty.
688    ANNOTATED_CALL_LOG_NOT_DIRTY = 1341;
689    // The call log was dirty but no changes were needed.
690    ANNOTATED_CALL_LOG_NO_CHANGES_NEEDED = 1342;
691    // The call log was force refreshed but no changes were needed.
692    ANNOTATED_CALL_LOG_FORCE_REFRESH_NO_CHANGES_NEEDED = 1343;
693    // The call log was dirty and changes were needed.
694    ANNOTATED_CALL_LOG_CHANGES_NEEDED = 1344;
695    // The call log was force refreshed and changes were needed.
696    ANNOTATED_CALL_LOG_FORCE_REFRESH_CHANGES_NEEDED = 1345;
697
698    MAIN_VVM_TAB_VISIBLE = 1346;
699
700    // Main bottom navigation bar non user actions
701    MAIN_OPEN_WITH_TAB_FAVORITE = 1347;
702    MAIN_OPEN_WITH_TAB_CALL_LOG = 1348;
703    MAIN_OPEN_WITH_TAB_CONTACTS = 1349;
704    MAIN_OPEN_WITH_TAB_VOICEMAIL = 1350;
705    MAIN_OPEN_WITH_DIALPAD = 1351;
706
707    // Incoming call screened for spam auto blocking
708    INCOMING_CALL_SCREENED = 1352;
709    // Incoming call auto blocked as spam
710    INCOMING_CALL_AUTO_BLOCKED_AS_SPAM = 1353;
711    // Incoming voicemail screened for spam auto blocking
712    INCOMING_VOICEMAIL_SCREENED = 1354;
713    // Incoming voicemail auto blocked as spam
714    INCOMING_VOICEMAIL_AUTO_BLOCKED_AS_SPAM = 1355;
715    // User reported auto blocked spam call as spam
716    AUTO_BLOCKED_SPAM_CALL_REPORTED_AS_SPAM = 1356;
717    // User reported auto blocked spam call as not spam
718    AUTO_BLOCKED_SPAM_CALL_REPORTED_AS_NOT_SPAM = 1357;
719
720    // User enabled spam blocking through setting page.
721    SPAM_BLOCKING_ENABLED_THROUGH_SETTING = 1358;
722    // User disabled spam blocking through setting page.
723    SPAM_BLOCKING_DISABLED_THROUGH_SETTING = 1359;
724    // Failure happened while modifying spam blocking setting.
725    SPAM_BLOCKING_MODIFY_FAILURE_THROUGH_SETTING = 1360;
726
727    VVM_NOTIFICATIONS_SETTING_CLICKED = 1361;
728    VVM_USER_TURNED_TRANSCRIBE_ON_FROM_SETTINGS = 1362;
729    VVM_USER_TURNED_TRANSCRIBE_OFF_FROM_SETTINGS = 1363;
730    VVM_USER_TURNED_DONATION_ON_FROM_SETTINGS = 1364;
731    VVM_USER_TURNED_DONATION_OFF_FROM_SETTINGS = 1365;
732
733    // Spam blocking call log promo shown for user.
734    SPAM_BLOCKING_CALL_LOG_PROMO_SHOWN = 1366;
735    // User enabled spam blocking through call log promo.
736    SPAM_BLOCKING_ENABLED_THROUGH_CALL_LOG_PROMO = 1367;
737    // Failure happened while enabling spam blocking through call log promo.
738    SPAM_BLOCKING_MODIFY_FAILURE_THROUGH_CALL_LOG_PROMO = 1368;
739
740    TOKEN_FETCHER_NEED_USER_APPROVAL = 1371;
741    TOKEN_FETCHER_IO_EXCEPTION = 1372;
742    TOKEN_FETCHER_AUTH_EXCEPTION = 1373;
743    TOKEN_FETCHER_CLEAR_EXCEPTION = 1374;
744
745    PEOPLE_API_LOOKUP_FAILED = 1375;
746
747    // New Speed Dial impressions
748    LIGHTBRINGER_VIDEO_REQUESTED_FOR_FAVORITE_CONTACT = 1376;
749    LIGHTBRINGER_VIDEO_REQUESTED_FOR_SUGGESTED_CONTACT = 1377;
750    LIGHTBRINGER_VIDEO_REQUESTED_FOR_FAVORITE_CONTACT_DISAMBIG = 1378;
751
752    // Spam blocking after call notification promo shown for user.
753    SPAM_BLOCKING_AFTER_CALL_NOTIFICATION_PROMO_SHOWN = 1379;
754    // User enabled spam blocking through after call notification promo.
755    SPAM_BLOCKING_ENABLED_THROUGH_AFTER_CALL_NOTIFICATION_PROMO = 1380;
756    // Failure happened while enabling spam blocking through after call
757    // notification promo.
758    SPAM_BLOCKING_MODIFY_FAILURE_THROUGH_AFTER_CALL_NOTIFICATION_PROMO = 1381;
759
760    // RTT call impressions
761    OUTGOING_RTT_CALL = 1382;
762    INCOMING_RTT_CALL = 1383;
763    // The call turns into RTT call mid call.
764    RTT_MID_CALL_ENABLED = 1384;
765    // Mid call RTT request accepted.
766    RTT_MID_CALL_ACCEPTED = 1385;
767    // Mid call RTT request rejected.
768    RTT_MID_CALL_REJECTED = 1386;
769
770    // Send button clicked in RTT call, this includes send button on keyboard.
771    RTT_SEND_BUTTON_CLICKED = 1387;
772    RTT_KEYBOARD_SEND_BUTTON_CLICKED = 1388;
773
774    // For background calling
775    START_CALL_IN_BUBBLE_MODE = 1392;
776
777    // Switch audio route
778    IN_CALL_SWITCH_AUDIO_ROUTE_SPEAKER = 1393;
779    IN_CALL_SWITCH_AUDIO_ROUTE_WIRED_HEADSET = 1394;
780    IN_CALL_SWITCH_AUDIO_ROUTE_EARPIECE = 1395;
781    IN_CALL_SWITCH_AUDIO_ROUTE_BLUETOOTH = 1396;
782
783    // Impressions for PhoneLookup
784    PEOPLE_API_PHONE_LOOKUP_TIMEOUT = 1397;
785    CP2_EXTENDED_DIRECTORY_PHONE_LOOKUP_TIMEOUT = 1398;
786
787    // Favorite general
788    FAVORITE_ADD_FAVORITE = 1399;
789    FAVORITE_OPEN_DISAMBIG_DIALOG = 1400;
790    FAVORITE_REMOVE_FAVORITE_BY_DRAG_AND_DROP = 1401;
791    FAVORITE_MOVE_FAVORITE_BY_DRAG_AND_DROP = 1402;
792    // Favorite menu
793    FAVORITE_OPEN_FAVORITE_MENU = 1403;
794    FAVORITE_SEND_MESSAGE = 1404;
795    FAVORITE_OPEN_CONTACT_CARD = 1405;
796    FAVORITE_REMOVE_FAVORITE = 1406;  // Include drag and drop
797    // Favorite disambig
798    FAVORITE_SET_VIDEO_DEFAULT = 1407;
799    FAVORITE_SET_VOICE_DEFAULT = 1408;
800  }
801}
802