summaryrefslogtreecommitdiff
path: root/java/com/android/dialer/logging
diff options
context:
space:
mode:
authoryueg <yueg@google.com>2018-02-15 11:53:09 -0800
committerCopybara-Service <copybara-piper@google.com>2018-02-22 01:25:18 -0800
commita4377191c9a8201d983f66979b56b26b6221967b (patch)
treeff6b4032765fc31f1e9531c1db2323c88014133e /java/com/android/dialer/logging
parent410451fcec2e9d6c6e7d2371a401981d4d73faad (diff)
Add logging to NUI.
Including: - switching tabs - touch search list - press back button - click search bar and voice button - click FAB Test: MainActivityOldPeerTest, MainSearchControllerTest PiperOrigin-RevId: 185875596 Change-Id: Ie7824ce2f7a2570327abdb35cef1538cad786e73
Diffstat (limited to 'java/com/android/dialer/logging')
-rw-r--r--java/com/android/dialer/logging/dialer_impression.proto20
1 files changed, 19 insertions, 1 deletions
diff --git a/java/com/android/dialer/logging/dialer_impression.proto b/java/com/android/dialer/logging/dialer_impression.proto
index f839b1399..635d8fd02 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: 1327
+ // Next Tag: 1341
enum Type {
UNKNOWN_AOSP_EVENT_TYPE = 1000;
@@ -657,5 +657,23 @@ message DialerImpression {
DUO_CALL_LOG_SET_UP_INSTALL_SHOWN = 1324;
DUO_CALL_LOG_SET_UP_ACTIVATE_SHOWN = 1325;
DUO_CALL_LOG_INVITE_SHOWN = 1326;
+
+ // NUI bottom navigation bar
+ NUI_SWITCH_TAB_TO_FAVORITE = 1327;
+ NUI_SWITCH_TAB_TO_CALL_LOG = 1328;
+ NUI_SWITCH_TAB_TO_CONTACTS = 1329;
+ NUI_SWITCH_TAB_TO_VOICEMAIL = 1330;
+ // NUI search
+ NUI_TOUCH_DIALPAD_SEARCH_LIST_TO_CLOSE_SEARCH_AND_DIALPAD = 1331;
+ NUI_TOUCH_DIALPAD_SEARCH_LIST_TO_HIDE_DIALPAD = 1332;
+ NUI_TOUCH_SEARCH_LIST_TO_CLOSE_SEARCH = 1333;
+ NUI_TOUCH_SEARCH_LIST_TO_HIDE_KEYBOARD = 1334;
+ NUI_PRESS_BACK_BUTTON_TO_CLOSE_SEARCH = 1335;
+ NUI_PRESS_BACK_BUTTON_TO_CLOSE_SEARCH_AND_DIALPAD = 1336;
+ NUI_PRESS_BACK_BUTTON_TO_HIDE_DIALPAD = 1337;
+ NUI_CLICK_SEARCH_BAR = 1338;
+ NUI_CLICK_SEARCH_BAR_VOICE_BUTTON = 1339;
+ // NUI FAB
+ NUI_CLICK_FAB_TO_OPEN_DIALPAD = 1340;
}
}