diff options
author | 2021-02-17 19:37:25 -0800 | |
---|---|---|
committer | 2021-02-22 20:07:29 -0800 | |
commit | d0ab1a0eeda4e33bb9d82ea2c4c2d8d2061f2f23 (patch) | |
tree | bff4e1a1c83c83a11d6c883c587211680e125ecf /protos | |
parent | 97710ffbb29daa8e901845821c4f06d7faf50d25 (diff) |
[AA+] Add WW logging for Slice actions.
Bug: 178562918
Test: Manual
Change-Id: I515ee3c0990dea2c30e68d5919568dc1773912ee
Diffstat (limited to 'protos')
-rw-r--r-- | protos/launcher_atom.proto | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/protos/launcher_atom.proto b/protos/launcher_atom.proto index dc9f8dd3fa..fe81b4cbeb 100644 --- a/protos/launcher_atom.proto +++ b/protos/launcher_atom.proto @@ -29,6 +29,7 @@ message ItemInfo { Shortcut shortcut = 3; Widget widget = 4; FolderIcon folder_icon = 9; + Slice slice = 10; SearchActionItem search_action_item = 11; } // When used for launch event, stores the global predictive rank @@ -170,6 +171,11 @@ message FolderIcon { optional string label_info = 4; } +// Contains Slice details for logging. +message Slice{ + optional string uri = 1; +} + // Represents SearchAction with in launcher message SearchActionItem{ optional string package_name = 1; |