summaryrefslogtreecommitdiff
path: root/java/com/android/dialer/logging
diff options
context:
space:
mode:
authoryueg <yueg@google.com>2017-12-18 16:20:58 -0800
committerCopybara-Service <copybara-piper@google.com>2017-12-18 16:23:38 -0800
commitf539f7885be23d3aff470e573c70d52db3b2a878 (patch)
tree985185fd12e676d53bbe361968e69242d087d482 /java/com/android/dialer/logging
parentb35b0e20a9902a9c39d2c7ed7078e05d60ee633b (diff)
Bubble v2 logging.
Log the following actions: - expand/collapse bubble - return to call - mute/unmute - switch audio route to speaker/bluetooth/wired or earpiece - end call Bug: 67605985 Test: AudioRouteSelectorActivityTest, NewReturnToCallControllerTest PiperOrigin-RevId: 179484647 Change-Id: I4e2ee34f5550382b2e51bab16ce33e9e16caa3b2
Diffstat (limited to 'java/com/android/dialer/logging')
-rw-r--r--java/com/android/dialer/logging/dialer_impression.proto21
1 files changed, 20 insertions, 1 deletions
diff --git a/java/com/android/dialer/logging/dialer_impression.proto b/java/com/android/dialer/logging/dialer_impression.proto
index aed66251a..2d2eebf67 100644
--- a/java/com/android/dialer/logging/dialer_impression.proto
+++ b/java/com/android/dialer/logging/dialer_impression.proto
@@ -12,7 +12,7 @@ message DialerImpression {
// Event enums to be used for Impression Logging in Dialer.
// It's perfectly acceptable for this enum to be large
// Values should be from 1000 to 100000.
- // Next Tag: 1311
+ // Next Tag: 1320
enum Type {
UNKNOWN_AOSP_EVENT_TYPE = 1000;
@@ -625,5 +625,24 @@ message DialerImpression {
DUO_CALL_LOG_SET_UP_INSTALL = 1308;
DUO_CALL_LOG_SET_UP_ACTIVATE = 1309;
DUO_CALL_LOG_INVITE = 1310;
+
+ // Bubble primary button first click to expand bubble
+ BUBBLE_V2_CLICK_TO_EXPAND = 1311;
+ // Bubble primary button second click to collapse bubble
+ BUBBLE_V2_CLICK_TO_COLLAPSE = 1312;
+ // User return to call from bubble call action menu
+ BUBBLE_V2_RETURN_TO_CALL = 1313;
+ // User muted call from bubble call action menu
+ BUBBLE_V2_MUTE_CALL = 1314;
+ // User unmuted call from bubble call action menu
+ BUBBLE_V2_UNMUTE_CALL = 1315;
+ // User choose audio route speakerphone from bubble call action menu
+ BUBBLE_V2_SPEAKERPHONE = 1316;
+ // User choose audio route wired or earpiece from bubble call action menu
+ BUBBLE_V2_WIRED_OR_EARPIECE = 1317;
+ // User choose audio route bluetooth from bubble call action menu
+ BUBBLE_V2_BLUETOOTH = 1318;
+ // User ended call from bubble call action menu
+ BUBBLE_V2_END_CALL = 1319;
}
}