summaryrefslogtreecommitdiffstats
path: root/java/com/android/dialer/logging/dialer_impression.proto
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2018-03-03 04:12:44 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2018-03-03 04:12:44 +0000
commit1efd9579502d164bac214006d582ca26e2bc123e (patch)
tree9546080c18f569aa4d94cba93a2d7394d378efbc /java/com/android/dialer/logging/dialer_impression.proto
parent9ed12284f4e5ca8eb89e7dfd53729c9aa2621ab5 (diff)
parent563bb5a3be0e9d93df143273f572204cfdcccbca (diff)
downloadandroid_packages_apps_Dialer-1efd9579502d164bac214006d582ca26e2bc123e.tar.gz
android_packages_apps_Dialer-1efd9579502d164bac214006d582ca26e2bc123e.tar.bz2
android_packages_apps_Dialer-1efd9579502d164bac214006d582ca26e2bc123e.zip
Merge "Added impression logging for AnnotatedCallLog rebuild operations."
Diffstat (limited to 'java/com/android/dialer/logging/dialer_impression.proto')
-rw-r--r--java/com/android/dialer/logging/dialer_impression.proto13
1 files changed, 12 insertions, 1 deletions
diff --git a/java/com/android/dialer/logging/dialer_impression.proto b/java/com/android/dialer/logging/dialer_impression.proto
index 1b0d62650..80249f464 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: 1341
+ // Next Tag: 1346
enum Type {
UNKNOWN_AOSP_EVENT_TYPE = 1000;
@@ -675,5 +675,16 @@ message DialerImpression {
MAIN_CLICK_SEARCH_BAR_VOICE_BUTTON = 1339;
// NUI FAB
MAIN_CLICK_FAB_TO_OPEN_DIALPAD = 1340;
+
+ // The call log was not dirty.
+ ANNOTATED_CALL_LOG_NOT_DIRTY = 1341;
+ // The call log was dirty but no changes were needed.
+ ANNOTATED_CALL_LOG_NO_CHANGES_NEEDED = 1342;
+ // The call log was force refreshed but no changes were needed.
+ ANNOTATED_CALL_LOG_FORCE_REFRESH_NO_CHANGES_NEEDED = 1343;
+ // The call log was dirty and changes were needed.
+ ANNOTATED_CALL_LOG_CHANGES_NEEDED = 1344;
+ // The call log was force refreshed and changes were needed.
+ ANNOTATED_CALL_LOG_FORCE_REFRESH_CHANGES_NEEDED = 1345;
}
}