From 8369df095a73a77b3715f8ae7ba06089cebca4ce Mon Sep 17 00:00:00 2001 From: Eric Erfanian Date: Wed, 3 May 2017 10:27:13 -0700 Subject: This change reflects the Dialer V10 RC00 branch. RC00 is based on: branch: dialer-android_release_branch/153304843.1 synced to: 153304843 following the instructions at go/dialer-aosp-release. In this release: * Removes final apache sources. * Uses native lite compilation. More drops will follow with subsequent release candidates until we reach our final v10 release, in cadence with our prebuilt drops. Test: TreeHugger, on device Change-Id: Ic9684057230f9b579c777820c746cd21bf45ec0f --- .../android/dialer/logging/interaction_event.proto | 46 ++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 java/com/android/dialer/logging/interaction_event.proto (limited to 'java/com/android/dialer/logging/interaction_event.proto') diff --git a/java/com/android/dialer/logging/interaction_event.proto b/java/com/android/dialer/logging/interaction_event.proto new file mode 100644 index 000000000..1075b1ff1 --- /dev/null +++ b/java/com/android/dialer/logging/interaction_event.proto @@ -0,0 +1,46 @@ +syntax = "proto2"; + +package com.android.dialer.logging; +option java_package = "com.android.dialer.logging"; +option java_multiple_files = true; +option optimize_for = LITE_RUNTIME; + + +message InteractionEvent { + enum Type { + + UNKNOWN = 0; + + // Leaving tags 1-14 for more frequent interactions, e.g. ANSWERED_CALL + + // An incoming call was blocked + CALL_BLOCKED = 15; + + // The user blocked a number from the Call Log screen + BLOCK_NUMBER_CALL_LOG = 16; + + // The user blocked a number from the Call details screen + BLOCK_NUMBER_CALL_DETAIL = 17; + + // The user blocked a number from the Management screen + BLOCK_NUMBER_MANAGEMENT_SCREEN = 18; + + // The user unblocked a number from the Call Log screen + UNBLOCK_NUMBER_CALL_LOG = 19; + + // The user unblocked a number from the Call details screen + UNBLOCK_NUMBER_CALL_DETAIL = 20; + + // The user unblocked a number from the Management screen + UNBLOCK_NUMBER_MANAGEMENT_SCREEN = 21; + + // The user blocked numbers from contacts marked as send to voicemail + IMPORT_SEND_TO_VOICEMAIL = 22; + + // The user blocked a number then undid the block + UNDO_BLOCK_NUMBER = 23; + + // The user unblocked a number then undid the unblock + UNDO_UNBLOCK_NUMBER = 24; + } +} -- cgit v1.2.3