summaryrefslogtreecommitdiffstats
path: root/protos/launcher_log.proto
diff options
context:
space:
mode:
Diffstat (limited to 'protos/launcher_log.proto')
-rw-r--r--protos/launcher_log.proto12
1 files changed, 11 insertions, 1 deletions
diff --git a/protos/launcher_log.proto b/protos/launcher_log.proto
index eae02ca07..37305555a 100644
--- a/protos/launcher_log.proto
+++ b/protos/launcher_log.proto
@@ -61,6 +61,7 @@ enum ItemType {
SHORTCUT = 2;
WIDGET = 3;
FOLDER_ICON = 4;
+ DEEPSHORTCUT = 5;
}
// Used to define what type of container a Target would represent.
@@ -74,6 +75,7 @@ enum ContainerType {
OVERVIEW = 6;
PREDICTION = 7;
SEARCHRESULT = 8;
+ DEEPSHORTCUTS = 9;
}
// Used to define what type of control a Target would represent.
@@ -106,8 +108,16 @@ message Action {
FLING = 4;
PINCH = 5;
}
+ enum Direction {
+ NONE = 0;
+ UP = 1;
+ DOWN = 2;
+ LEFT = 3;
+ RIGHT = 4;
+ }
optional Type type = 1;
optional Touch touch = 2;
+ optional Direction dir = 3;
}
//
@@ -126,4 +136,4 @@ message LauncherEvent {
optional int64 action_duration_millis = 4;
optional int64 elapsed_container_millis = 5;
optional int64 elapsed_session_millis = 6;
-} \ No newline at end of file
+}