From 238162be28420614bf8c96116818c288a51e4da7 Mon Sep 17 00:00:00 2001 From: Fan Zhang Date: Thu, 25 May 2017 14:01:41 -0700 Subject: [PATCH] Misc logging constants for Settings - Add logging constant to track when default app is changed in Settings - Add constants to track Settings search result count/query length Change-Id: I7cbe5ff5a1cd6ab4cf3a70997268cbfcee1b567a Fix: 62072727 Test: builds --- proto/src/metrics_constants.proto | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/proto/src/metrics_constants.proto b/proto/src/metrics_constants.proto index d8d91af2801ad..1670ba02cf18e 100644 --- a/proto/src/metrics_constants.proto +++ b/proto/src/metrics_constants.proto @@ -4025,6 +4025,15 @@ message MetricsEvent { // OS: O DR ASSIST_GESTURE_TRIGGERED = 999; + // ACTION: Update default app from Settings + ACTION_SETTINGS_UPDATE_DEFAULT_APP = 1000; + + // FIELD - Query length when Settings search result is clicked + FIELD_SETTINGS_SERACH_QUERY_LENGTH = 1001; + + // FIELD - Number of results when Settings search result is clicked + FIELD_SETTINGS_SERACH_RESULT_COUNT = 1002; + // Add new aosp constants above this line. // END OF AOSP CONSTANTS }