summaryrefslogtreecommitdiff
path: root/java/com/android/dialer/logging/ui_action.proto
diff options
context:
space:
mode:
authorEric Erfanian <erfanian@google.com>2017-06-19 11:26:01 -0700
committerEric Erfanian <erfanian@google.com>2017-06-19 11:30:45 -0700
commit2f1c7586bcce334ca69022eb8dc6d8965ceb6a05 (patch)
treebf00ada449ee3de31ec983a14e84159200aa18c2 /java/com/android/dialer/logging/ui_action.proto
parent3d0ca68e466482971a4cf46576c50cb2bd42bcb5 (diff)
Update AOSP Dialer source from internal google3 repository at
cl/159428781. Test: make, treehugger This CL updates the AOSP Dialer source with all the changes that have gone into the private google3 repository. This includes all the changes from cl/152373142 (4/06/2017) to cl/159428781 (6/19/2017). This goal of these drops is to keep the AOSP source in sync with the internal google3 repository. Currently these sync are done by hand with very minor modifications to the internal source code. See the Android.mk file for list of modifications. Our current goal is to do frequent drops (daily if possible) and eventually switched to an automated process. Change-Id: Ie60a84b3936efd0ea3d95d7c86bf96d2b1663030
Diffstat (limited to 'java/com/android/dialer/logging/ui_action.proto')
-rw-r--r--java/com/android/dialer/logging/ui_action.proto43
1 files changed, 43 insertions, 0 deletions
diff --git a/java/com/android/dialer/logging/ui_action.proto b/java/com/android/dialer/logging/ui_action.proto
new file mode 100644
index 000000000..784dbed9b
--- /dev/null
+++ b/java/com/android/dialer/logging/ui_action.proto
@@ -0,0 +1,43 @@
+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 UiAction {
+ enum Type {
+ UNKNOWN = 0;
+
+ // General action starting from 1
+ CHANGE_TAB_TO_FAVORITE = 1;
+ CHANGE_TAB_TO_CALL_LOG = 2;
+ CHANGE_TAB_TO_CONTACTS = 3;
+ CHANGE_TAB_TO_VOICEMAIL = 4;
+ PRESS_ANDROID_BACK_BUTTON = 5;
+ TEXT_CHANGE_WITH_INPUT = 6;
+ SCROLL = 7;
+
+ // In call log, starting from 100
+ CLICK_CALL_LOG_ITEM = 100;
+ OPEN_CALL_DETAIL = 101;
+ CLOSE_CALL_DETAIL_WITH_CANCEL_BUTTON = 102;
+ COPY_NUMBER_IN_CALL_DETAIL = 103;
+ EDIT_NUMBER_BEFORE_CALL_IN_CALL_DETAIL = 104;
+
+ // In dialpad, starting from 200
+ OPEN_DIALPAD = 200;
+ CLOSE_DIALPAD = 201;
+ PRESS_CALL_BUTTON_WITHOUT_CALLING = 202;
+
+ // In search, starting from 300
+ OPEN_SEARCH = 300;
+ HIDE_KEYBOARD_IN_SEARCH = 301;
+ CLOSE_SEARCH_WITH_HIDE_BUTTON = 302;
+
+ // In call history, starting from 400
+ OPEN_CALL_HISTORY = 400;
+ CLOSE_CALL_HISTORY_WITH_CANCEL_BUTTON = 401;
+ }
+}