summaryrefslogtreecommitdiffstats
path: root/protos
diff options
context:
space:
mode:
authorSunny Goyal <sunnygoyal@google.com>2017-03-21 11:59:04 -0700
committerSunny Goyal <sunnygoyal@google.com>2017-03-22 16:47:21 -0700
commit778634c81870ae2013907950a98bb7793802e6c7 (patch)
tree541bc8177418b23c59753bf095dd67d001bcaba5 /protos
parentaeb60bffc9a5a9a45bac59b189f9d448b1c63320 (diff)
downloadandroid_packages_apps_Trebuchet-778634c81870ae2013907950a98bb7793802e6c7.tar.gz
android_packages_apps_Trebuchet-778634c81870ae2013907950a98bb7793802e6c7.tar.bz2
android_packages_apps_Trebuchet-778634c81870ae2013907950a98bb7793802e6c7.zip
Adding logging for various interaction in PinItemRequest UI
Bug: 34766840 Change-Id: Ib29d7d4b53ab99cdf3ff253976ef55345729487b
Diffstat (limited to 'protos')
-rw-r--r--protos/launcher_log.proto5
1 files changed, 5 insertions, 0 deletions
diff --git a/protos/launcher_log.proto b/protos/launcher_log.proto
index c42b142f7..68a6b28cd 100644
--- a/protos/launcher_log.proto
+++ b/protos/launcher_log.proto
@@ -79,6 +79,7 @@ enum ContainerType {
PREDICTION = 7;
SEARCHRESULT = 8;
DEEPSHORTCUTS = 9;
+ PINITEM = 10; // confirmation screen
}
// Used to define what type of control a Target would represent.
@@ -124,6 +125,10 @@ message Action {
enum Command {
HOME_INTENT = 0;
BACK = 1;
+ ENTRY = 2; // Indicates entry to one of Launcher container type target
+ // not using the HOME_INTENT
+ CANCEL = 3; // Indicates that a confirmation screen was cancelled
+ CONFIRM = 4; // Indicates thata confirmation screen was accepted
}
optional Type type = 1;
optional Touch touch = 2;